This commit is contained in:
2023-02-27 03:44:43 +00:00
parent 275b685c09
commit e508377d85
17 changed files with 230 additions and 41 deletions

View File

@@ -16,7 +16,7 @@
###secrets path variable
options._secrets = lib.mkOption {
type = lib.types.str;
default = "/run/user/1000/secrets/";
default = "/run/user/1000/secrets";
description = "Path to the Secrets runtime";
};
@@ -24,7 +24,7 @@
###secretstore path variable
options._secretstore = lib.mkOption {
type = lib.types.str;
default = "${inputs.self}/secrets/";
default = "${inputs.self}/secrets";
description = "Path to the Secrets storage";
};