10 lines
181 B
Nix
Raw Normal View History

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