summaryrefslogtreecommitdiffstats
path: root/sys/sound
diff options
context:
space:
mode:
Diffstat (limited to 'sys/sound')
-rw-r--r--sys/sound/default.nix11
1 files changed, 11 insertions, 0 deletions
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;
+ };
+}