nix/nixos/common/modules/networking.nix

18 lines
316 B
Nix
Raw Normal View History

2024-03-21 10:51:41 +01:00
{lib, ... }: {
2023-07-12 16:43:21 +02:00
2024-03-21 10:51:41 +01:00
# Enable networking with NetworkManager
networking = {
networkmanager = {
enable = true;
};
2024-03-21 14:42:48 +01:00
2023-12-19 00:28:59 +01:00
useDHCP = lib.mkDefault true;
2024-03-21 14:42:48 +01:00
enableIPv6 = lib.mkForce false;
firewall = {
enable = true;
allowedTCPPorts = [ ];
allowedUDPPorts = [ ];
};
};
2024-03-20 14:59:42 +01:00
}