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]; }