revert to old boot, it's faster

This commit is contained in:
Ranomier 2024-12-14 04:56:02 +01:00
parent d0db1b5cea
commit 39ddc51895
3 changed files with 10 additions and 9 deletions

View file

@ -1,6 +1,11 @@
{...}: { {...}: {
# Bootloader. boot.loader = {
boot.loader.systemd-boot.enable = true; systemd-boot.enable = true;
boot.loader.systemd-boot.configurationLimit = 20; systemd-boot.configurationLimit = 20;
boot.loader.efi.canTouchEfiVariables = true; 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;
};
} }

View file

@ -3,7 +3,7 @@
./bluetooth.nix ./bluetooth.nix
./fwupd.nix ./fwupd.nix
./scan_and_print.nix ./scan_and_print.nix
./trackpoint.nix #./trackpoint.nix
./gpu.nix ./gpu.nix
]; ];
} }

View file

@ -28,9 +28,5 @@
"rd.udev.log_level=3" "rd.udev.log_level=3"
"udev.log_priority=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;
}; };
} }