10 lines
182 B
Nix
Raw Normal View History

2023-11-04 02:28:27 +01:00
{ config, ... }: {
networking = {
hostName = config.hostcfg.hostname;
useDHCP = true;
nameservers = [ "1.1.1.1" "9.9.9.9" ];
firewall = { enable = true; };
};
}