nix/nixos/common/modules/networking.nix
iFargle 608791a7a9
Some checks failed
build-linode-img / build-linode-img (push) Failing after 27s
default dhcp
2023-12-19 08:28:59 +09:00

17 lines
No EOL
312 B
Nix

{lib, pkgs, config, ...}: {
# Enable networking with NetworkManager
networking = {
networkmanager = {
enable = true;
};
useDHCP = lib.mkDefault true;
enableIPv6 = false;
firewall = {
enable = true;
allowedTCPPorts = [ ];
allowedUDPPorts = [ ];
};
};
}