2023-11-08 17:15:32 +01:00

10 lines
182 B
Nix

{ config, ... }: {
networking = {
hostName = config.hostcfg.hostname;
useDHCP = true;
nameservers = [ "1.1.1.1" "9.9.9.9" ];
firewall = { enable = true; };
};
}