From 1bc65ceb514ef5624d41dd8634e29a97475ed466 Mon Sep 17 00:00:00 2001 From: John Ogle Date: Thu, 6 Nov 2025 09:06:47 -0800 Subject: [PATCH] [nix-book] Remove linuxPackages_latest to fix boot I/O timeouts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit After downgrade from nixos-unstable to 25.05, nix-book experienced I/O timeouts during early boot due to incompatible kernel drivers for Thunderbolt/VMD hardware. Using stable kernel resolves the issue. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- machines/nix-book/configuration.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/machines/nix-book/configuration.nix b/machines/nix-book/configuration.nix index 92773bc..7a3a553 100644 --- a/machines/nix-book/configuration.nix +++ b/machines/nix-book/configuration.nix @@ -37,9 +37,6 @@ networking.hostName = "nix-book"; # Define your hostname. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. - boot.kernelPackages = pkgs.linuxPackages_latest; - - # Enable networking networking.networkmanager.enable = true;