Speed up dhcpcd

This commit is contained in:
coolneng 2020-08-03 01:37:45 +02:00
parent 084ca7060c
commit 302863b446
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
1 changed files with 7 additions and 0 deletions

View File

@ -43,4 +43,11 @@
openFirewall = false;
startWhenNeeded = true;
};
# Speed up dhcpcd
networking.dhcpcd.extraConfig = ''
timeout 1
noarp
nodelay
'';
}