nix/nixos/common/modules/networking.nix

16 lines
No EOL
318 B
Nix

{pkgs, config, hostname, ...}: {
# Enable networking with NM and automatically allow port 22 over Tailscale
networking = {
networkmanager = {
enable = true;
};
enableIPv6 = false;
firewall = {
enable = true;
allowedTCPPorts = [ ];
allowedUDPPorts = [ ];
};
};
}