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