ark/modules/network/default.nix
2022-07-01 04:45:26 +03:00

10 lines
155 B
Nix

{
imports = [./dns];
networking.dhcpcd.enable = true;
networking.useDHCP = false;
networking.dhcpcd.extraConfig = ''
noarp
nodelay
'';
}