summaryrefslogtreecommitdiffstats
path: root/sys/sound
diff options
context:
space:
mode:
authorsils <sils@sils.li>2023-07-02 10:24:52 +0200
committersils <sils@sils.li>2023-07-02 10:24:52 +0200
commitff0effe75b15ad1a74b14458d137ab38f93535f5 (patch)
treeb95c2cfb41a1168e2a09c3c4542b05743e381a97 /sys/sound
parentFix(sys): Yank keyboardlayout out of host (diff)
downloadnix-config-ff0effe75b15ad1a74b14458d137ab38f93535f5.zip
Fix(sys): Yank sound config out of hosts
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;
+ };
+}