From 28c02b1f6a7c67ced20f76a7b94b1165afd53fad Mon Sep 17 00:00:00 2001 From: Denis Manherz Date: Mon, 27 Nov 2023 14:28:14 +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 cae21b6..e8a6a48 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 ]