1
0
Fork 0
mirror of https://github.com/Mic92/sops-nix.git synced 2025-03-31 04:14:37 +00:00

module: add defaultSopsFormat option

This commit is contained in:
Jörg Thalheim 2020-07-23 08:34:52 +01:00
parent 2fa9c1a948
commit ffc9c2c78c
No known key found for this signature in database
GPG key ID: 003F2096411B5F92

View file

@ -37,7 +37,7 @@ let
};
format = mkOption {
type = types.enum ["yaml" "json" "binary"];
default = "yaml";
default = cfg.defaultSopsFormat;
description = ''
File format used to decrypt the sops secret.
Binary files are written to the target file as is.
@ -104,6 +104,14 @@ in {
'';
};
defaultSopsFormat = mkOption {
type = types.str;
default = "yaml";
description = ''
Default sops format used for all secrets.
'';
};
validateSopsFiles = mkOption {
type = types.bool;
default = true;