diff options
-rw-r--r-- | nixos/modules/desktop.nix | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/nixos/modules/desktop.nix b/nixos/modules/desktop.nix index 4065003..11236f4 100644 --- a/nixos/modules/desktop.nix +++ b/nixos/modules/desktop.nix @@ -46,7 +46,7 @@ in { kanshi wdisplays wayvnc wl-mirror slurp grim - pipewire wf-recorder + wf-recorder wl-clipboard wl-color-picker swayidle dunst @@ -141,6 +141,11 @@ in { alsa.enable = true; alsa.support32Bit = true; pulse.enable = true; + config.pipewire = { + context.modules = [ + { name = "libpipewire-module-zeroconf-discover"; } + ]; + }; }; security.rtkit.enable = true; |