From 33bcf093b7e5f0e913c444d9da10507978a5a1c7 Mon Sep 17 00:00:00 2001 From: David Arnold Date: Mon, 25 Jan 2021 18:40:39 -0500 Subject: [PATCH] iso-cd: fix by overruling conflicting custom configuration --- hosts/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hosts/default.nix b/hosts/default.nix index 55a197dc..8d6f060d 100644 --- a/hosts/default.nix +++ b/hosts/default.nix @@ -29,6 +29,8 @@ let (nixos + "/nixos/modules/installer/cd-dvd/installation-cd-minimal-new-kernel.nix") ({ config, ... }: { isoImage.isoBaseName = "nixos-" + config.networking.hostName; + networking.networkmanager.enable = lib.mkForce false; # confilcts with networking.wireless which might be slightly more useful on a stick + networking.wireless.iwd.enable = lib.mkForce false; # confilcts with networking.wireless }) ]; }