1
Files
flake-nixinator/system/modules/1_deprecated/agenix/options.nix

23 lines
390 B
Nix

{
lib,
mylib,
...
}: {
secrets = lib.mkOption {
type = lib.types.attrs;
description = "The secret files managed by agenix (encrypted by SSH key)";
example = ''
{
christoph = [
"heidi-discord-token"
"kopia-password"
"kopia-server-username"
"kopia-server-password"
];
}
'';
default = {};
};
}