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:
parent
2fa9c1a948
commit
ffc9c2c78c
1 changed files with 9 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue