Files
clan-core/lib/build-clan/secrets/interface.nix
2025-04-29 16:02:32 +10:00

19 lines
335 B
Nix

{
lib,
...
}:
let
inherit (lib) types;
in
{
options = {
age.plugins = lib.mkOption {
type = types.listOf (types.strMatching "age-plugin-.*");
default = [ ];
description = ''
A list of age plugins which must be available in the shell when encrypting and decrypting secrets.
'';
};
};
}