From cc345fe2f25b6617bcdaf41f00499928e0360b0e Mon Sep 17 00:00:00 2001 From: cinereal Date: Sat, 7 Jun 2025 11:19:18 +0200 Subject: [PATCH] pay-respects: properly end line, fixing error `--set: command not found` on AI integration --- nixos/modules/programs/pay-respects.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/programs/pay-respects.nix b/nixos/modules/programs/pay-respects.nix index 5bd90b71f1b2..71d5c8f0e51d 100644 --- a/nixos/modules/programs/pay-respects.nix +++ b/nixos/modules/programs/pay-respects.nix @@ -44,7 +44,7 @@ let '' mkdir -p $out/bin makeWrapper ${getExe cfg.package} $out/bin/${cfg.package.meta.mainProgram} \ - ${optionalString (cfg.aiIntegration == false) "--set _PR_AI_DISABLE true"} + ${optionalString (cfg.aiIntegration == false) "--set _PR_AI_DISABLE true"} \ ${optionalString (cfg.aiIntegration != false) '' --set _PR_AI_URL ${cfg.aiIntegration.url} \ --set _PR_AI_MODEL ${cfg.aiIntegration.model} \