dotfiles/hosts/thinkpad/configs/firewall.nix

12 lines
132 B
Nix

{ pkgs, ... }:
{
networking.firewall = {
enable = true;
allowedTCPPorts = [
];
allowedUDPPorts = [
];
};
}