From 05399a9d9dedd56aae1396ab15e1d248e602abc5 Mon Sep 17 00:00:00 2001 From: "Ricardo (XenGi) Band" Date: Sat, 14 Feb 2026 20:04:19 +0100 Subject: [PATCH] add fw comment --- hosts/sql/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/sql/default.nix b/hosts/sql/default.nix index bc43010..707f731 100644 --- a/hosts/sql/default.nix +++ b/hosts/sql/default.nix @@ -10,8 +10,8 @@ networking = { hostName = "sql"; firewall.extraInputRules = '' - ip saddr 195.160.173.0/24 ip daddr 195.160.173.15 tcp dport 5432 accept - ip6 saddr 2001:678:760:cccb::/64 ip6 daddr 2001:678:760:cccb::15 tcp dport 5432 accept + ip saddr 195.160.173.0/24 ip daddr 195.160.173.15 tcp dport 5432 accept comment "Allow Postgres clients from cccb network" + ip6 saddr 2001:678:760:cccb::/64 ip6 daddr 2001:678:760:cccb::15 tcp dport 5432 accept comment "Allow Postgres clients from cccb network" ''; };