mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-01-18 21:29:33 +01:00
fixed: broken secret path
This commit is contained in:
parent
e0b1022a1c
commit
4383be0757
|
@ -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;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -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";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue