fixed secrets path

This commit is contained in:
Harry 2024-07-15 18:12:03 +02:00
parent bd6bed9200
commit 3674ad502b
5 changed files with 5 additions and 5 deletions

View file

@ -12,7 +12,7 @@ in
imports = [ authentik-nix.nixosModules.default ];
sops.secrets."authentik" = {
sopsFile = ./secrets/authentik.env;
sopsFile = ../secrets/authentik.env;
format = "dotenv";
};

View file

@ -32,7 +32,7 @@ in
#TODO: add Radarr/Sonarr/... api key support
config = {
sops.defaultSopsFile = ./secrets/services-keys.json;
sops.defaultSopsFile = ../secrets/services-keys.json;
sops.defaultSopsFormat = "json";
sops.secrets.service-key = {
"sonarr" = { };

View file

@ -1,7 +1,7 @@
{ config, ... }:
{
sops.secrets."searx" = {
sopsFile = ./secrets/searx.env;
sopsFile = ../secrets/searx.env;
format = "dotenv";
};

View file

@ -14,7 +14,7 @@ in
config = {
sops.secrets."slskd" = {
sopsFile = ./secrets/slskd.env;
sopsFile = ../secrets/slskd.env;
format = "dotenv";
};

View file

@ -16,7 +16,7 @@ in
config = {
sops.secrets."transmission" = {
sopsFile = ./secrets/transmission.json;
sopsFile = ../secrets/transmission.json;
path = "/var/lib/secrets/transmission/settings.json";
};