fix: Don't enable NetworkManager-wait-online

This commit is contained in:
uttarayan21
2024-12-03 19:48:32 +05:30
parent 429cb4256a
commit 810205eb56

View File

@@ -4,6 +4,7 @@
{
config,
pkgs,
lib,
...
}: {
imports = [
@@ -14,6 +15,7 @@
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
systemd.services.NetworkManager-wait-online.enable = lib.mkForce false;
nix = {
settings = {
@@ -45,7 +47,7 @@
};
networking.hostName = "deoxys"; # Define your hostname.
networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# Configure network proxy if necessary
# networking.proxy.default = "http://user:password@proxy:port/";