From 0f7734670be3f5ff7eef6f1cce13970900ed3fde Mon Sep 17 00:00:00 2001 From: Denis Manherz Date: Mon, 27 Nov 2023 14:30:04 +0100 Subject: [PATCH] Update --- projects/automatic1111/nixos/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/automatic1111/nixos/default.nix b/projects/automatic1111/nixos/default.nix index e8a6a48..097d5fb 100644 --- a/projects/automatic1111/nixos/default.nix +++ b/projects/automatic1111/nixos/default.nix @@ -83,7 +83,7 @@ in cliArgs = (flatten (mapAttrsToList (n: v: if v == null then [] - else if isBool v then [ "--${optionalString v }${n}" ] + else if isBool v then [ "${optionalString v }--${n}" ] else if isInt v then [ "--${n}" "${toString v}" ] else if isFloat v then [ "--${n}" "${floatToString v}" ] else if isString v then ["--${n}" v ]