From b18767d95ad5adabf6f6288432ef27054f999a1b Mon Sep 17 00:00:00 2001 From: GaspardCulis Date: Sat, 26 Oct 2024 10:35:53 +0200 Subject: [PATCH] chore(Zephyrus): Tweak bootloader timeout --- hosts/Zephyrus/hardware-configuration.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/Zephyrus/hardware-configuration.nix b/hosts/Zephyrus/hardware-configuration.nix index c5738c6..68937cd 100644 --- a/hosts/Zephyrus/hardware-configuration.nix +++ b/hosts/Zephyrus/hardware-configuration.nix @@ -16,13 +16,16 @@ boot = { kernelPackages = lib.mkDefault pkgs.linuxPackages_zen; kernelModules = ["kvm-amd"]; - kernelParams = ["mem_sleep_default=deep"]; # Should fix/change suspend method + kernelParams = [ + "mem_sleep_default=deep" # Should fix/change suspend method + ]; extraModulePackages = []; initrd = { availableKernelModules = ["nvme" "xhci_pci" "usbhid" "sdhci_pci"]; kernelModules = []; }; loader = { + timeout = 2; efi.canTouchEfiVariables = true; grub = { enable = true;