From 8ec33eb8cfc416d47fc8da511f2e69a4d5bbdf7e Mon Sep 17 00:00:00 2001 From: lassulus Date: Fri, 22 Nov 2024 22:30:06 +0100 Subject: [PATCH] core password-store: fix secret location --- nixosModules/clanCore/vars/secret/password-store.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixosModules/clanCore/vars/secret/password-store.nix b/nixosModules/clanCore/vars/secret/password-store.nix index 873b1fb00..518f8dd2e 100644 --- a/nixosModules/clanCore/vars/secret/password-store.nix +++ b/nixosModules/clanCore/vars/secret/password-store.nix @@ -44,7 +44,7 @@ in lib.mkIf (config.clan.core.vars.settings.secretStore == "password-store") { fileModule = file: { - path = "/run/secrets/vars/${file.config.generatorName}/${file.config.name}"; + path = "/run/secrets/${file.config.generatorName}/${file.config.name}"; }; secretUploadDirectory = lib.mkDefault "/etc/secrets"; secretModule = "clan_cli.vars.secret_modules.password_store";