From 2940edac4473c06785df658ccf2ba8d45f6e2d76 Mon Sep 17 00:00:00 2001 From: Nick Date: Sun, 27 Jul 2025 15:07:56 -0500 Subject: [PATCH] feat: added prompter --- modules/nixos/services/prompter/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/nixos/services/prompter/default.nix b/modules/nixos/services/prompter/default.nix index 8b6f27b..0026e70 100644 --- a/modules/nixos/services/prompter/default.nix +++ b/modules/nixos/services/prompter/default.nix @@ -31,7 +31,7 @@ in let sopsPath = secret: { path = "${service.sops.path0}/${service.name}-${secret}"; - owner = "caddy"; + owner = "root"; mode = "600"; }; in @@ -43,7 +43,7 @@ in value = sopsPath secret; }) [ - "auth" + "${service.name}-auth" ] ); };