build-clan: move clan attribute relates modules into subfolder

This commit is contained in:
Johannes Kirschbauer
2025-06-24 09:52:26 +02:00
parent afc001cc54
commit 9fcbb6d688
9 changed files with 14 additions and 14 deletions

View File

@@ -0,0 +1,18 @@
{
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.
'';
};
};
}