From 739195edacddf0d6ef0c376e25f110ffbb810561 Mon Sep 17 00:00:00 2001 From: notohh Date: Sun, 2 Jul 2023 20:09:49 -0400 Subject: [PATCH] postgres: add attic --- hosts/arashi/services/postgresql.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hosts/arashi/services/postgresql.nix b/hosts/arashi/services/postgresql.nix index e8721c9..b8c1db3 100644 --- a/hosts/arashi/services/postgresql.nix +++ b/hosts/arashi/services/postgresql.nix @@ -44,6 +44,10 @@ name = "authelia"; ensurePermissions."DATABASE authelia" = "ALL PRIVILEGES"; } + { + name = "atticd"; + ensurePermissions."DATABASE atticd" = "ALL PRIVILEGES"; + } ]; ensureDatabases = [ "forgejo" @@ -51,6 +55,7 @@ "miniflux" "grafana" "authelia" + "atticd" ]; }; }