vars/interface: make type of dependencies configurable

One vars get lifted to the global scope, dependencies need to be structured differently, eg. categorized by instances
This commit is contained in:
DavHau
2025-07-15 13:41:05 +07:00
parent 66a6758db4
commit b91158f454
3 changed files with 20 additions and 3 deletions

View File

@@ -65,4 +65,14 @@
Set it to pkgs.pass for GPG or pkgs.passage for age encryption.
'';
};
dependenciesType = lib.mkOption {
type = lib.types.raw;
description = ''
The type of the `dependencies` option.
'';
internal = true;
readOnly = true;
visible = false;
};
}