Modules: Rename sops modules to sops-nix
This commit is contained in:
16
system/modules/sops-nix/options.nix
Normal file
16
system/modules/sops-nix/options.nix
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
lib,
|
||||
mylib,
|
||||
...
|
||||
}: {
|
||||
secrets = lib.mkOption {
|
||||
type = lib.types.attrsOf (lib.types.listOf lib.types.str);
|
||||
description = "The secrets to expose on this host";
|
||||
example = ''
|
||||
christoph = [
|
||||
"docker-password"
|
||||
];
|
||||
'';
|
||||
default = [];
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user