From 119663c180cc05d9ac9da5f50559083c600f47e4 Mon Sep 17 00:00:00 2001 From: Lander Van den Bulcke Date: Sat, 4 Oct 2025 08:59:33 +0200 Subject: [PATCH] feat: add atuin db Signed-off-by: Lander Van den Bulcke --- hosts/servers/db-01.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hosts/servers/db-01.nix b/hosts/servers/db-01.nix index 8484249..1fcaef4 100644 --- a/hosts/servers/db-01.nix +++ b/hosts/servers/db-01.nix @@ -9,12 +9,17 @@ host all all 100.64.0.0/24 trust # trust tailnet ''; ensureDatabases = [ + "atuin" "authelia" "forgejo" "lldap" "mealie" ]; ensureUsers = [ + { + name = "atuin"; + ensureDBOwnership = true; + } { name = "authelia"; ensureDBOwnership = true; @@ -38,6 +43,7 @@ enable = true; startAt = "*-*-* 02:00:00"; databases = [ + "atuin" "authelia" "forgejo" "lldap"