1

Modules: Rename sops modules to sops-nix

This commit is contained in:
2025-07-09 17:28:27 +02:00
parent f6388b0d6e
commit fd8a8f6308
9 changed files with 81 additions and 54 deletions

View 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 = [];
};
}