From c33a6a5b7ee130370aeeebf6635977415115f7da Mon Sep 17 00:00:00 2001 From: Ophestra Date: Fri, 10 Apr 2026 19:12:45 +0900 Subject: hst: optionally reject insecure options This prevents inadvertent use of insecure compatibility features. Closes #30. Signed-off-by: Ophestra --- nixos.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nixos.nix') diff --git a/nixos.nix b/nixos.nix index 5b60aea4..d59ffc4e 100644 --- a/nixos.nix +++ b/nixos.nix @@ -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} $@ '' ) ] -- cgit v1.3.1