fixed: broken secret path

This commit is contained in:
Harry 2024-08-12 16:12:07 +02:00
parent e0b1022a1c
commit 4383be0757
2 changed files with 3 additions and 3 deletions

View file

@ -15,10 +15,10 @@ in
config = { config = {
sops.secrets = { sops.secrets = {
freshrss_username = { freshrss_username = {
sopsFile = ../secrets/freshrss.yaml; sopsFile = ../../secrets/freshrss.yaml;
}; };
freshrss_password = { freshrss_password = {
sopsFile = ../secrets/freshrss.yaml; sopsFile = ../../secrets/freshrss.yaml;
}; };
}; };

View file

@ -33,7 +33,7 @@ in
#TODO: add Radarr/Sonarr/... api key support #TODO: add Radarr/Sonarr/... api key support
config = { config = {
sops.secrets."homepage" = { sops.secrets."homepage" = {
sopsFile = ../secrets/homepage.env; sopsFile = ../../secrets/homepage.env;
format = "dotenv"; format = "dotenv";
}; };