aboutsummaryrefslogtreecommitdiff
path: root/hosts/ganymede/config.nix
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2025-09-14 13:57:10 -0500
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2025-09-14 14:12:12 -0500
commit8244bb48b9dbd3358aa6d47209dfbfd3c19b906f (patch)
tree3b6755a39f8f044b21036ccf63cf41eb401e858c /hosts/ganymede/config.nix
parentd71356eef83e4df59416cd10109cb5688e657c16 (diff)
fantasy config if ganymede did run nixos (I wish)
Diffstat (limited to 'hosts/ganymede/config.nix')
-rw-r--r--hosts/ganymede/config.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/hosts/ganymede/config.nix b/hosts/ganymede/config.nix
new file mode 100644
index 0000000..62abd56
--- /dev/null
+++ b/hosts/ganymede/config.nix
@@ -0,0 +1,36 @@
+{
+ collinux = {
+ user = {
+ name = "collin";
+ password = "$y$j9T$08yFysn8jr9K4Wk.hYXbG0$NzY9vIbNknJViA..Jw.vF8wmQtBgEZZU.cdLQOmDvU2";
+ };
+
+ terminal = {
+ programs = {
+ git = {
+ enable = true;
+ userName = "Collin Williams";
+ userEmail = "96917990+bluedragon1221@users.noreply.github.com";
+ };
+ };
+ };
+
+ boot.systemd-boot.enable = true;
+
+ services = {
+ networking = {
+ enable = true;
+ networkmanager.enable = true;
+ };
+
+ audio = {
+ enable = true;
+ pulse.enable = true;
+ };
+
+ selfhost = {
+ navidrome.enable = true;
+ };
+ };
+ };
+}