11 lines
124 B
Nix
11 lines
124 B
Nix
{
|
|
imports = [ ./dns ];
|
|
|
|
networking.useDHCP = false;
|
|
|
|
networking.dhcpcd.extraConfig = ''
|
|
noarp
|
|
nodelay
|
|
'';
|
|
}
|