ark/modules/network/default.nix

10 lines
155 B
Nix
Raw Normal View History

2020-11-21 23:54:07 +03:00
{
2022-02-18 20:31:01 +03:00
imports = [./dns];
2022-07-01 04:45:26 +03:00
networking.dhcpcd.enable = true;
2020-11-21 23:54:07 +03:00
networking.useDHCP = false;
2022-03-09 23:55:02 +03:00
networking.dhcpcd.extraConfig = ''
noarp
nodelay
'';
2020-11-21 23:54:07 +03:00
}