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