From 9533b119e401c2d24bffef6fb5aa9241545ef801 Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Fri, 16 Aug 2024 23:17:22 +0200 Subject: [PATCH] Use nm instead of wpa on installer --- hosts/installer/default.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/hosts/installer/default.nix b/hosts/installer/default.nix index 1c3d819..fda6e0b 100644 --- a/hosts/installer/default.nix +++ b/hosts/installer/default.nix @@ -14,13 +14,18 @@ nixpkgs.hostPlatform = "x86_64-linux"; + networking = { + wireless.enable = false; + networkmanager.enable = true; + }; + environment.systemPackages = [ inputs.disko.packages.${pkgs.system}.default ]; users.users.root.openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGBUORYC3AvTPQmtUEApTa9DvHoJy4mjuQy8abSjCcDd seb@north" ]; - installer.cloneConfig = lib.mkForce false; + installer.cloneConfig = false; isoImage = { edition = lib.mkForce "seb-minimal"; isoName = lib.mkForce "NixOS";