ark/modules/network/default.nix
2022-05-21 18:52:13 +03:00

12 lines
265 B
Nix

{
imports = [./dns];
networking.dhcpcd.enable = false;
networking.useDHCP = false;
networking.dhcpcd.extraConfig = ''
noarp
nodelay
'';
# https://github.com/NixOS/nixpkgs/issues/60900
# systemd.services.systemd-user-sessions.enable = false;
}