nix/nixos/common/modules/networking.nix
2024-03-21 08:43:09 +09:00

21 lines
401 B
Nix

{lib, pkgs, config, ...}: {
# Enable networking with NetworkManager
networking = {
networkmanager = {
enable = true;
};
useDHCP = lib.mkDefault true;
enableIPv6 = lib.mkForce false;
firewall = {
enable = true;
allowedTCPPorts = [ ];
allowedUDPPorts = [ ];
};
};
boot.kernel.sysctl = {
"net.ipv6.conf.all.disable_ipv6" = true;
};
}