aboutsummaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
Diffstat (limited to 'hosts')
-rw-r--r--hosts/jupiter/config.nix4
-rw-r--r--hosts/jupiter/system.nix9
2 files changed, 10 insertions, 3 deletions
diff --git a/hosts/jupiter/config.nix b/hosts/jupiter/config.nix
index c5ab464..27bda45 100644
--- a/hosts/jupiter/config.nix
+++ b/hosts/jupiter/config.nix
@@ -52,14 +52,14 @@
};
boot = {
- bootloader = "systemd-boot";
+ systemd-boot.enable = true;
plymouth.enable = true;
};
services = {
networking = {
enable = true;
- wifiDaemon = "networkmanager"; # apparently gnome doesn't support iwd
+ networkmanager.enable = true;
};
audio = {
diff --git a/hosts/jupiter/system.nix b/hosts/jupiter/system.nix
index b2d8d20..1c63845 100644
--- a/hosts/jupiter/system.nix
+++ b/hosts/jupiter/system.nix
@@ -1,4 +1,8 @@
-{inputs, ...}: {
+{
+ inputs,
+ pkgs,
+ ...
+}: {
imports = [
inputs.disko.nixosModules.disko
./disks.nix
@@ -14,5 +18,8 @@
systemd.network.wait-online.enable = false; # fix for weird wifi issue
+ services.pipewire.jack.enable = true;
+ environment.systemPackages = with pkgs; [puredata vital helvum];
+
system.stateVersion = "25.05";
}