Add NixOS host modules and runners

This commit is contained in:
Dmitry
2026-05-29 22:11:41 +03:00
parent 86fb248d85
commit e715d577b1
11 changed files with 144 additions and 61 deletions
+12 -12
View File
@@ -2,24 +2,24 @@
networking.firewall = {
enable = true;
allowedTCPPorts = [
22
139
445
2222
22 # SSH
139 # Samba (NetBIOS session)
445 # Samba (SMB)
2222 # Gitea SSH
3002
4567
5432
5432 # PostgreSQL
7080
8081
8384
22000
8384 # Syncthing web UI
22000 # Syncthing data transfer
];
allowedUDPPorts = [
137
138
9993
21027
22000
137 # Samba (NetBIOS name)
138 # Samba (NetBIOS datagram)
9993 # ZeroTier
21027 # Syncthing discovery
22000 # Syncthing data transfer
];
};
}