ark/modules/network/default.nix

12 lines
265 B
Nix
Raw Normal View History

2020-11-21 23:54:07 +03:00
{
2022-02-18 20:31:01 +03:00
imports = [./dns];
2021-01-27 17:52:23 +03:00
networking.dhcpcd.enable = false;
2020-11-21 23:54:07 +03:00
networking.useDHCP = false;
2022-03-09 23:55:02 +03:00
networking.dhcpcd.extraConfig = ''
noarp
nodelay
'';
2022-05-21 18:52:13 +03:00
# https://github.com/NixOS/nixpkgs/issues/60900
# systemd.services.systemd-user-sessions.enable = false;
2020-11-21 23:54:07 +03:00
}