fix secrets locations

This commit is contained in:
William 2026-02-15 23:01:25 -03:00
parent 10f823a3a6
commit fe460c9151
4 changed files with 6 additions and 7 deletions

View file

@ -1,8 +1,7 @@
{ {
lib,
config, config,
pkgs,
inputs, inputs,
pkgs,
... ...
}: }:
@ -83,12 +82,12 @@ in
age.secrets = { age.secrets = {
"nextcloud-secrets.json" = { "nextcloud-secrets.json" = {
file = ../../../secrets/nextcloud-secrets.json.age; file = "${inputs.self}/secrets/nextcloud-secrets.json.age";
owner = "nextcloud"; owner = "nextcloud";
group = "nextcloud"; group = "nextcloud";
}; };
nextcloud-adminpass = { nextcloud-adminpass = {
file = ../../../secrets/nextcloud-adminpass.age; file = "${inputs.self}/secrets/nextcloud-adminpass.age";
owner = "nextcloud"; owner = "nextcloud";
group = "nextcloud"; group = "nextcloud";
}; };

View file

@ -51,7 +51,7 @@ in
]; ];
age.secrets.cloudflare = { age.secrets.cloudflare = {
file = ../../../secrets/cloudflare.age; file = "${inputs.self}/secrets/cloudflare.age";
owner = "nginx"; owner = "nginx";
group = "nginx"; group = "nginx";
}; };

View file

@ -51,7 +51,7 @@ in
]; ];
age.secrets.cloudflare = { age.secrets.cloudflare = {
file = ../../../secrets/cloudflare.age; file = "${inputs.self}/secrets/cloudflare.age";
owner = "nginx"; owner = "nginx";
group = "nginx"; group = "nginx";
}; };

View file

@ -27,7 +27,7 @@
# other aspects # other aspects
fwupd fwupd
lxc podman
]); ]);
}; };
} }