mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-01-18 21:29:33 +01:00
fixed secrets path
This commit is contained in:
parent
bd6bed9200
commit
3674ad502b
|
@ -12,7 +12,7 @@ in
|
|||
imports = [ authentik-nix.nixosModules.default ];
|
||||
|
||||
sops.secrets."authentik" = {
|
||||
sopsFile = ./secrets/authentik.env;
|
||||
sopsFile = ../secrets/authentik.env;
|
||||
format = "dotenv";
|
||||
};
|
||||
|
||||
|
|
|
@ -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" = { };
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ config, ... }:
|
||||
{
|
||||
sops.secrets."searx" = {
|
||||
sopsFile = ./secrets/searx.env;
|
||||
sopsFile = ../secrets/searx.env;
|
||||
format = "dotenv";
|
||||
};
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@ in
|
|||
config = {
|
||||
|
||||
sops.secrets."slskd" = {
|
||||
sopsFile = ./secrets/slskd.env;
|
||||
sopsFile = ../secrets/slskd.env;
|
||||
format = "dotenv";
|
||||
};
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@ in
|
|||
|
||||
config = {
|
||||
sops.secrets."transmission" = {
|
||||
sopsFile = ./secrets/transmission.json;
|
||||
sopsFile = ../secrets/transmission.json;
|
||||
path = "/var/lib/secrets/transmission/settings.json";
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue