diff options
Diffstat (limited to 'options.nix')
| -rw-r--r-- | options.nix | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/options.nix b/options.nix index a1b76e06..effa6559 100644 --- a/options.nix +++ b/options.nix @@ -218,7 +218,7 @@ in type = nullOr bool; default = true; description = '' - Whether to share the Wayland socket. + Whether to share the Wayland server via security-context-v1. ''; }; @@ -238,11 +238,19 @@ in ''; }; + pipewire = mkOption { + type = nullOr bool; + default = true; + description = '' + Whether to share the PipeWire server via SecurityContext. + ''; + }; + pulse = mkOption { type = nullOr bool; default = true; description = '' - Whether to share the PulseAudio socket and cookie. + Whether to run the PulseAudio compatibility daemon. ''; }; }; |
