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; }; }