nix-config/host/networking/default.nix
Donovan Glover cdda9bcd27
meta: Don't wait for a network connection
This makes NixOS boot *extremely fast* since network-manager is no
longer waiting 17 seconds for a network connection.
2023-06-04 17:16:43 -04:00

19 lines
326 B
Nix

{
networking = {
hostName = "nixos";
networkmanager = {
enable = true;
dns = "none";
wifi.macAddress = "random";
ethernet.macAddress = "random";
};
useHostResolvConf = true;
};
services.resolved.llmnr = "false";
systemd.services.NetworkManager-wait-online.enable = false;
}