dotfiles/hosts/thinkpad/configs/firewall.nix

10 lines
131 B
Nix

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