hst: check for insecure PulseAudio enablement
Some checks failed
Test / Create distribution (push) Successful in 37s
Test / Sandbox (push) Successful in 2m41s
Test / Sandbox (race detector) (push) Successful in 4m44s
Test / Hakurei (push) Successful in 5m5s
Test / Hakurei (race detector) (push) Successful in 6m31s
Test / Flake checks (push) Has been cancelled
Test / Hpkg (push) Has been cancelled

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 2c0f4e231e
7 changed files with 34 additions and 5 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.
'';
};
};