infrastructure/hosts/aurum/system/networking/default.nix

19 lines
367 B
Nix
Raw Normal View History

2024-01-15 15:50:55 +00:00
{...}: {
networking = {
# the name of the machine
hostName = "aurum";
# domain name servers, use clouflare family
nameservers = ["1.1.1.2" "1.0.0.2"];
# use networkManager, see nmcli
networkmanager.enable = true;
# firewall
firewall.enable = true;
# https://github.com/StevenBlack/hosts
stevenblack.enable = true;
};
}