diff options
-rw-r--r-- | hosts/thinklappi/default.nix | 10 | ||||
-rw-r--r-- | sys/default.nix | 1 | ||||
-rw-r--r-- | sys/sound/default.nix | 11 |
3 files changed, 12 insertions, 10 deletions
diff --git a/hosts/thinklappi/default.nix b/hosts/thinklappi/default.nix index d05b3e4..d0887d7 100644 --- a/hosts/thinklappi/default.nix +++ b/hosts/thinklappi/default.nix @@ -8,16 +8,6 @@ ../../sys ]; - services = { - pipewire = { - enable = true; - alsa.enable = true; - alsa.support32Bit = true; - pulse.enable = true; - jack.enable = true; - }; - }; - hardware = { opengl.enable = true; bluetooth.enable = true; diff --git a/sys/default.nix b/sys/default.nix index c0796b4..19c042c 100644 --- a/sys/default.nix +++ b/sys/default.nix @@ -6,6 +6,7 @@ ./nix ./packages ./services + ./sound ./systemd ./users ]; diff --git a/sys/sound/default.nix b/sys/sound/default.nix new file mode 100644 index 0000000..3007098 --- /dev/null +++ b/sys/sound/default.nix @@ -0,0 +1,11 @@ +{...}: { + services.pipewire = { + enable = true; + alsa = { + enable = true; + support32Bit = true; + }; + pulse.enable = true; + jack.enable = true; + }; +} |