diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2025-03-14 10:55:46 -0700 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2025-03-14 10:55:46 -0700 |
commit | 257263c36d22a004f24c5f3898cb5878db8f28f2 (patch) | |
tree | b0787416bc8a99525bb404dc40366ad62e65386e | |
parent | 2bd8b3ef199e99dba25f3161bbf72110e3664a84 (diff) | |
download | nix-257263c36d22a004f24c5f3898cb5878db8f28f2.tar nix-257263c36d22a004f24c5f3898cb5878db8f28f2.tar.gz nix-257263c36d22a004f24c5f3898cb5878db8f28f2.tar.bz2 nix-257263c36d22a004f24c5f3898cb5878db8f28f2.tar.lz nix-257263c36d22a004f24c5f3898cb5878db8f28f2.tar.xz nix-257263c36d22a004f24c5f3898cb5878db8f28f2.tar.zst nix-257263c36d22a004f24c5f3898cb5878db8f28f2.zip |
Add wireplumber from master branch
-rw-r--r-- | hosts/common/optional/pipewire.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/hosts/common/optional/pipewire.nix b/hosts/common/optional/pipewire.nix index e942339..8981b20 100644 --- a/hosts/common/optional/pipewire.nix +++ b/hosts/common/optional/pipewire.nix @@ -25,7 +25,10 @@ jack.enable = true; package = pkgs.master.pipewire; pulse.enable = true; - wireplumber.enable = true; + wireplumber = { + enable = true; + package = pkgs.master.wireplumber; + }; # use the example session manager (no others are packaged yet so this is enabled by default, # no need to redefine it in your config for now) |