1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00

chore: get secrets via input, mock for CI

this fixes CI, yay!
This commit is contained in:
2023-06-27 17:57:42 +02:00
parent d0edb9c915
commit 3138fd23ef
32 changed files with 203 additions and 111 deletions

View File

@@ -1,6 +1,7 @@
{
pkgs,
config,
inputs,
lib,
...
}: let
@@ -8,13 +9,13 @@
in {
age.secrets = {
nextcloud-password-database = {
file = ../../secrets/nextcloud-password-database.age;
file = inputs.secrets + "/nextcloud-password-database.age";
owner = "nextcloud";
group = "nextcloud";
mode = "440";
};
nextcloud-password-admin = {
file = ../../secrets/nextcloud-password-admin.age;
file = inputs.secrets + "/nextcloud-password-admin.age";
owner = "nextcloud";
group = "nextcloud";
mode = "440";