diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-04-10 19:12:45 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-04-10 19:34:02 +0900 |
| commit | c33a6a5b7ee130370aeeebf6635977415115f7da (patch) | |
| tree | 730e9faed1b6f8a9325e1ee0254236057af9190f /nixos.nix | |
| parent | 952082bd9b4a5387232da6965fd82e20ee8219a6 (diff) | |
hst: optionally reject insecure options
This prevents inadvertent use of insecure compatibility features.
Closes #30.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'nixos.nix')
| -rw-r--r-- | nixos.nix | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -265,7 +265,7 @@ in ''; in pkgs.writeShellScriptBin app.name '' - exec hakurei${if app.verbose then " -v" else ""} run ${checkedConfig "hakurei-app-${app.name}.json" conf} $@ + exec hakurei${if app.verbose then " -v" else ""}${if app.insecureWayland then " --insecure" else ""} run ${checkedConfig "hakurei-app-${app.name}.json" conf} $@ '' ) ] |
