Adding pipewire

This commit is contained in:
Miguel Palhas
2024-10-02 16:41:23 +01:00
parent 61508f1ddc
commit 14524587c2
3 changed files with 104 additions and 47 deletions
+9
View File
@@ -0,0 +1,9 @@
{ config, pkgs, ... }: {
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
}