nix/modules/networking.nix

17 lines
372 B
Nix
Raw Normal View History

{pkgs, config, hostname, ...}: {
# Enable networking with NM and automatically allow port 22 over Tailscale
2023-07-12 16:43:21 +02:00
networking = {
networkmanager = {
enable = true;
};
enableIPv6 = false;
firewall = {
enable = true;
allowedTCPPorts = [ ];
allowedUDPPorts = [ ];
interfaces.tailscale0.allowedTCPPorts = [ 22 ];
};
};
}