From 810205eb561d07753fd02d062c834df670a8e9fe Mon Sep 17 00:00:00 2001 From: uttarayan21 Date: Tue, 3 Dec 2024 19:48:32 +0530 Subject: [PATCH] fix: Don't enable NetworkManager-wait-online --- nixos/deoxys/configuration.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nixos/deoxys/configuration.nix b/nixos/deoxys/configuration.nix index cb614e58..719708ad 100644 --- a/nixos/deoxys/configuration.nix +++ b/nixos/deoxys/configuration.nix @@ -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/";