diff options
author | tv <tv@krebsco.de> | 2018-11-28 08:34:19 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2018-11-28 12:45:21 +0100 |
commit | 6f49342b2d5973478f1f5eb6f8d6307059e7bcf7 (patch) | |
tree | 1407762405a66c4f5a0d363a98d7874f769bccad /lib/types | |
parent | d92cc88a3ccfb378d045b35032ee3c0a4f5f860f (diff) |
populate file: add useChecksum
Diffstat (limited to 'lib/types')
-rw-r--r-- | lib/types/populate.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/types/populate.nix b/lib/types/populate.nix index f35786d..2cd3267 100644 --- a/lib/types/populate.nix +++ b/lib/types/populate.nix @@ -52,6 +52,10 @@ path = lib.mkOption { type = lib.types.absolute-pathname; }; + useChecksum = lib.mkOption { + default = false; + type = lib.types.bool; + }; }; }; git = lib.types.submodule { |