From 3153c5b3b092407db99d6a559e4c60136685a3f3 Mon Sep 17 00:00:00 2001 From: maix0 Date: Fri, 6 Dec 2024 14:46:41 +0100 Subject: [PATCH] fixed: concat string on ENV being a list --- lib/util.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/util.nix b/lib/util.nix index aeca2af..d0d6b2d 100644 --- a/lib/util.nix +++ b/lib/util.nix @@ -24,7 +24,7 @@ with builtins; let toEnvValue = value: if isBool value then (if value then "true" else "false") - else if isList value then "[${concatStringSep ";" value}]" + else if isList value then "[${concatStringsSep ";" value}]" else value ;