10 lines
181 B
Nix
10 lines
181 B
Nix
{ config, ... }: {
|
|
networking = {
|
|
hostName = config.syscfg.hostname;
|
|
useDHCP = true;
|
|
nameservers = [ "1.1.1.1" "9.9.9.9" ];
|
|
|
|
firewall = { enable = true; };
|
|
};
|
|
}
|