hst: check for insecure PulseAudio enablement

This is currently still a noop, but required for #26.

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2025-12-08 02:53:07 +09:00
parent 104eeecf65
commit 422efcf258
8 changed files with 37 additions and 7 deletions

View File

@@ -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.
'';
};
};