Make store-backend configurable

This commit is contained in:
Pablo Ovelleiro Corral
2025-02-18 06:03:31 +01:00
parent 0a41c85871
commit f28a38bbb3
2 changed files with 27 additions and 6 deletions

View File

@@ -14,6 +14,17 @@
'';
};
passBackend = lib.mkOption {
type = lib.types.enum [
"passage"
"pass"
];
default = "pass";
description = ''
password-store backend to use. Valid options are `pass` and `passage`
'';
};
secretModule = lib.mkOption {
type = lib.types.str;
internal = true;