diff options
Diffstat (limited to 'nixos.nix')
| -rw-r--r-- | nixos.nix | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -196,6 +196,15 @@ in } ] ) + ++ optional (app.enablements.pipewire && app.pulse) { + type = "daemon"; + dst = if app.mapRealUid then "/run/user/${toString config.users.users.${username}.uid}/pulse/native" else "/run/user/65534/pulse/native"; + path = cfg.shell; + args = [ + "-lc" + "pipewire-pulse" + ]; + } ++ [ { type = "bind"; |
