Restrict pipewire TCP backend to localhost
This commit is contained in:
parent
b165ca7e1f
commit
a20426c850
|
@ -22,7 +22,9 @@ in {
|
||||||
defaultConf = lib.importJSON
|
defaultConf = lib.importJSON
|
||||||
"${inputs.nixpkgs}/nixos/modules/services/desktops/pipewire/daemon/pipewire-pulse.conf.json";
|
"${inputs.nixpkgs}/nixos/modules/services/desktops/pipewire/daemon/pipewire-pulse.conf.json";
|
||||||
in lib.recursiveUpdate defaultConf {
|
in lib.recursiveUpdate defaultConf {
|
||||||
"pulse.properties" = { "server.address" = [ "unix:native" "tcp:4713" ]; };
|
"pulse.properties" = {
|
||||||
|
"server.address" = [ "unix:native" "tcp:127.0.0.1:4713" ];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
security.rtkit.enable = true;
|
security.rtkit.enable = true;
|
||||||
|
|
Loading…
Reference in New Issue