From 37897892005f7f86d56a6891bf47fc6ed39d947c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leon=20Schwarz=C3=A4ugl?= Date: Fri, 6 Mar 2026 14:42:35 +0100 Subject: [PATCH] fix[iso]: network config conflict --- SwarselSystems.org | 6 +++--- install/installer-config.nix | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/SwarselSystems.org b/SwarselSystems.org index ac08109..f0bd52e 100644 --- a/SwarselSystems.org +++ b/SwarselSystems.org @@ -3363,7 +3363,7 @@ On the structure of overlays: as you notice, all of the attributes within overla }; } #+end_src -** Installer images (iso, kexec) +** Installer images (live iso, kexec) :PROPERTIES: :CUSTOM_ID: h:1d1ccae5-62ca-4d37-a28e-c59987850ed2 :END: @@ -7875,7 +7875,7 @@ This is a slim setup for developing base configuration. I do not track the hardw #+end_src -**** TODO Drugstore (ISO installer config) +**** TODO Drugstore (live ISO installer config) :PROPERTIES: :CUSTOM_ID: h:8583371d-5d47-468b-84ba-210aad7e2c90 :END: @@ -8008,7 +8008,7 @@ Steps to recover using live ISO: networking = { hostName = "drugstore"; - wireless.enable = false; + wireless.enable = lib.mkForce false; # dhcpcd.runHook = "${pkgs.utillinux}/bin/agetty --reload"; networkmanager.enable = true; usePredictableInterfaceNames = false; diff --git a/install/installer-config.nix b/install/installer-config.nix index d89b749..4f9cbd3 100644 --- a/install/installer-config.nix +++ b/install/installer-config.nix @@ -108,7 +108,7 @@ in networking = { hostName = "drugstore"; - wireless.enable = false; + wireless.enable = lib.mkForce false; # dhcpcd.runHook = "${pkgs.utillinux}/bin/agetty --reload"; networkmanager.enable = true; usePredictableInterfaceNames = false;