nix/nixos/common/modules/networking.nix
iFargle 22a21d9e40
Some checks failed
build-linode-img / build-linode-img (push) Failing after 38s
Use DHCP by default
2023-12-19 08:27:00 +09:00

17 lines
No EOL
293 B
Nix

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