From 32f0210acae6a51666b6e64c72fb747b29bf8ccd Mon Sep 17 00:00:00 2001 From: Christoph Schmatzler Date: Thu, 25 Dec 2025 18:47:54 +0000 Subject: [PATCH] up --- hosts/mindy/default.nix | 1 + profiles/postgresql.nix | 2 ++ 2 files changed, 3 insertions(+) diff --git a/hosts/mindy/default.nix b/hosts/mindy/default.nix index 2e8edc9..cd1bba4 100644 --- a/hosts/mindy/default.nix +++ b/hosts/mindy/default.nix @@ -60,6 +60,7 @@ { name = "shnosh"; ensureDBOwnership = true; + ensureClauses.superuser = true; } ]; }; diff --git a/profiles/postgresql.nix b/profiles/postgresql.nix index cc204e3..d9bbd1c 100644 --- a/profiles/postgresql.nix +++ b/profiles/postgresql.nix @@ -27,5 +27,7 @@ ''; }; + networking.firewall.interfaces."docker0".allowedTCPPorts = [5432]; networking.firewall.interfaces."tailscale0".allowedTCPPorts = [5432]; + networking.firewall.interfaces."br-+".allowedTCPPorts = [5432]; }