aboutsummaryrefslogtreecommitdiff
path: root/hosts/jupiter/config.nix
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2025-06-17 18:22:05 +0000
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2025-06-17 18:22:05 +0000
commit456bdf05b07147a1e08b7ef12639d2b0d8f1645b (patch)
treea51b76314856f63f4a9886109a26f80d216bf1f5 /hosts/jupiter/config.nix
parent56d351548c3ef1e5ceff7ec725ff2272cc386201 (diff)
update jupiter and setup minecraft server
Diffstat (limited to 'hosts/jupiter/config.nix')
-rw-r--r--hosts/jupiter/config.nix34
1 files changed, 20 insertions, 14 deletions
diff --git a/hosts/jupiter/config.nix b/hosts/jupiter/config.nix
index d8c2037..c5ab464 100644
--- a/hosts/jupiter/config.nix
+++ b/hosts/jupiter/config.nix
@@ -6,6 +6,7 @@
extraSystemModules = [
./system.nix
+ inputs.hjem.nixosModules.default
];
};
@@ -14,7 +15,6 @@
user = {
name = "collin";
- email = "96917990+bluedragon1221@users.noreply.github.com";
password = "$y$j9T$08yFysn8jr9K4Wk.hYXbG0$NzY9vIbNknJViA..Jw.vF8wmQtBgEZZU.cdLQOmDvU2";
};
@@ -23,22 +23,14 @@
programs = {
firefox.enable = true;
+ blackbox.enable = true;
};
};
terminal = {
- theme = "adwaita";
-
- terminalEmulators.blackbox.enable = true;
-
shells.fish.enable = true;
programs = {
- bat.enable = true;
- eza.enable = true;
- fzf.enable = true;
-
- nh.enable = true;
lazygit.enable = true;
starship = {
@@ -50,18 +42,32 @@
enable = true;
hardMode = false;
};
+
+ git = {
+ enable = true;
+ userName = "Collin Williams";
+ userEmail = "96917990+bluedragon1221@users.noreply.github.com";
+ };
};
};
boot = {
- theme = "default";
bootloader = "systemd-boot";
plymouth.enable = true;
};
- networking = {
- enable = true;
- wifiDaemon = "networkmanager"; # apparently gnome doesn't support iwd
+ services = {
+ networking = {
+ enable = true;
+ wifiDaemon = "networkmanager"; # apparently gnome doesn't support iwd
+ };
+
+ audio = {
+ enable = true;
+ pulse.enable = true;
+ };
+
+ bluetooth.enable = true;
};
};
}