diff options
author | tv <tv@krebsco.de> | 2018-10-31 18:24:57 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2018-10-31 18:26:05 +0100 |
commit | 170c46d53c83c9bf277b7b6dba7e86c052eae257 (patch) | |
tree | 6096523faac3e0c9d477458b547f7a6b3bebb345 /lib | |
parent | e2b29654251367545700154ffbac806705dd04c0 (diff) |
populate git: add clean.excludev1.7.0
Diffstat (limited to 'lib')
-rw-r--r-- | lib/default.nix | 1 | ||||
-rw-r--r-- | lib/types/populate.nix | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/lib/default.nix b/lib/default.nix index 3ebefdc..cf57316 100644 --- a/lib/default.nix +++ b/lib/default.nix @@ -16,6 +16,7 @@ let { }; }; sanitize = x: lib.getAttr (lib.typeOf x) { + list = map sanitize x; set = lib.mapAttrs (lib.const sanitize) (lib.filterAttrs diff --git a/lib/types/populate.nix b/lib/types/populate.nix index 3b13df0..f35786d 100644 --- a/lib/types/populate.nix +++ b/lib/types/populate.nix @@ -56,6 +56,12 @@ }; git = lib.types.submodule { options = { + clean = { + exclude = lib.mkOption { + default = []; + type = lib.types.listOf lib.types.str; + }; + }; ref = lib.mkOption { type = lib.types.str; # TODO lib.types.git.ref }; |