summary refs log tree commit diff stats
path: root/sys
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--sys/default.nix1
-rw-r--r--sys/sound/default.nix11
2 files changed, 12 insertions, 0 deletions
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;
+  };
+}