aboutsummaryrefslogtreecommitdiffhomepage
path: root/options.nix
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-12-08 02:53:07 +0900
committerOphestra <cat@gensokyo.uk>2025-12-08 03:13:02 +0900
commit422efcf258eb49ecd0d4de8e53adae656696ea56 (patch)
tree5abcdd8a0636567939dd94a7a7d1cd5ba180176c /options.nix
parent104eeecf650ba52e155ff63a4d4456a6391e961f (diff)
hst: check for insecure PulseAudio enablement
This is currently still a noop, but required for #26. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'options.nix')
-rw-r--r--options.nix12
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.
'';
};
};