better testing experience

This commit is contained in:
tristan 2024-01-02 04:01:19 +00:00
parent 4f28cbfda7
commit 9421a0a910
10 changed files with 96 additions and 49 deletions

View file

@ -5,7 +5,8 @@ let
builtins.trace "Skipping ${key} as it is a set" ""
else if value == "" || value == [ ] || value == false then
""
else if value == true then key
else if value == true then
key
else
''${key}="${toString value}"'';
in rec {