password/fw issue
All checks were successful
Check Nix flake / Perform Nix flake checks (pull_request) Successful in 3m56s
Check flake.lock / Check health of `flake.lock` (pull_request) Successful in 13s

This commit is contained in:
2025-12-25 01:01:38 -05:00
parent 01d67b2b13
commit abdc88b3a0
2 changed files with 48 additions and 35 deletions

View File

@@ -1,41 +1,54 @@
{ ... }:
{
networking.firewall.allowedTCPPorts = [
# qbit
8081
8082
8443
networking.firewall = {
# hydra
3000
extraCommands = "
iptables -I nixos-fw 1 -i br+ -j ACCEPT
";
# minio
8500
8501
extraStopCommands = "
iptables -D nixos-fw -i br+ -j ACCEPT
";
# gitea
2222
2223
8088
trustedInterfaces = [ "br+" ];
# attic
8183
allowedTCPPorts = [
# qbit
8081
8082
8443
# collabora
9980
# hydra
3000
# arr
6767
9696
7878
8989
8686
8787
5055
# minio
8500
8501
# temp postgres
5432
];
# gitea
2222
2223
8088
# attic
8183
# collabora
9980
# arr
6767
9696
7878
8989
8686
8787
5055
# temp postgres
5432
];
};
}