nixos/hosts/server/firewall.nix
2024-06-07 23:34:02 +02:00

8 lines
85 B
Nix

{
networking.firewall = {
enable = true;
allowedTCPPorts = [ 22 ];
};
}