Files
nixos-dotfiles/modules/networking/core/firewall.nix
T
2026-06-21 21:19:52 -05:00

18 lines
177 B
Nix

{ ... }:
{
networking.firewall = {
enable = true;
allowPing = true;
allowedTCPPorts = [
22
80
];
allowedUDPPorts = [
53
];
};
}