From 6ca563ea5a39ddf006c6775963e116911176dac4 Mon Sep 17 00:00:00 2001 From: Julius de Jeu Date: Thu, 26 May 2022 16:44:27 +0200 Subject: [PATCH] Forgot to include postgres --- nixos/machines/postgres/default.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/nixos/machines/postgres/default.nix b/nixos/machines/postgres/default.nix index d1e9776..5d48bcd 100644 --- a/nixos/machines/postgres/default.nix +++ b/nixos/machines/postgres/default.nix @@ -24,7 +24,7 @@ in { host all all fd42:8db7:2e6b:8e9b:216:3eff::/96 trust ''; ensureDatabases = - [ "gitea" "vault" "vaultwarden" "authentik" "umami" "mastodon" "pleroma" ]; + [ "gitea" "vault" "vaultwarden" "authentik" "umami" ]; ensureUsers = [ { name = "gitea"; @@ -43,8 +43,6 @@ in { ensurePermissions = { "DATABASE \"authentik\"" = "ALL PRIVILEGES"; }; } (user "umami") - (user "mastodon") - (user "pleroma") ]; enableTCPIP = true;