From 39ddc5189571bae0028d9ed5bf2868bd566f7df6 Mon Sep 17 00:00:00 2001 From: Ranomier <> Date: Sat, 14 Dec 2024 04:56:02 +0100 Subject: [PATCH] revert to old boot, it's faster --- hosts/crocoite/boot.nix | 13 +++++++++---- modules/hardware/default.nix | 2 +- modules/plymouth.nix | 4 ---- 3 files changed, 10 insertions(+), 9 deletions(-) diff --git a/hosts/crocoite/boot.nix b/hosts/crocoite/boot.nix index 0e5050f..1961f9e 100644 --- a/hosts/crocoite/boot.nix +++ b/hosts/crocoite/boot.nix @@ -1,6 +1,11 @@ {...}: { - # Bootloader. - boot.loader.systemd-boot.enable = true; - boot.loader.systemd-boot.configurationLimit = 20; - boot.loader.efi.canTouchEfiVariables = true; + boot.loader = { + systemd-boot.enable = true; + systemd-boot.configurationLimit = 20; + efi.canTouchEfiVariables = true; + # Hide the OS choice for bootloaders. + # It's still possible to open the bootloader list by pressing any key + # It will just not appear on screen unless a key is pressed + timeout = 0; + }; } diff --git a/modules/hardware/default.nix b/modules/hardware/default.nix index 2b92f71..911e5ca 100644 --- a/modules/hardware/default.nix +++ b/modules/hardware/default.nix @@ -3,7 +3,7 @@ ./bluetooth.nix ./fwupd.nix ./scan_and_print.nix - ./trackpoint.nix + #./trackpoint.nix ./gpu.nix ]; } diff --git a/modules/plymouth.nix b/modules/plymouth.nix index 3070300..a2c0603 100644 --- a/modules/plymouth.nix +++ b/modules/plymouth.nix @@ -28,9 +28,5 @@ "rd.udev.log_level=3" "udev.log_priority=3" ]; - # Hide the OS choice for bootloaders. - # It's still possible to open the bootloader list by pressing any key - # It will just not appear on screen unless a key is pressed - loader.timeout = 0; }; }