fix nix flake check
This commit is contained in:
@@ -19,7 +19,7 @@ let
|
||||
render-kvs =
|
||||
kvs:
|
||||
let
|
||||
render-kv = k: v: if isNull v.value then k else "${k}=${toString v.value}";
|
||||
render-kv = k: v: if v.value == null then k else "${k}=${toString v.value}";
|
||||
in
|
||||
lib.attrsets.mapAttrsToList render-kv (lib.filterAttrs (_k: v: v.enable) kvs);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user