From ce87cb3699c46eff3d5d5a97282b0ed2db32cd15 Mon Sep 17 00:00:00 2001 From: Dmitriy Pleshevskiy Date: Mon, 3 Jun 2024 17:55:07 +0300 Subject: [PATCH] host/asus: return systemd-boot instead of grub --- hosts/asus-gl553vd/configs/boot.nix | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/hosts/asus-gl553vd/configs/boot.nix b/hosts/asus-gl553vd/configs/boot.nix index 5b323c2..f2dcc7c 100644 --- a/hosts/asus-gl553vd/configs/boot.nix +++ b/hosts/asus-gl553vd/configs/boot.nix @@ -1,12 +1,10 @@ { boot.loader = { timeout = 1; - grub = { + systemd-boot = { enable = true; - device = "nodev"; - efiSupport = true; - efiInstallAsRemovable = true; - enableCryptodisk = true; + configurationLimit = 20; }; + efi.canTouchEfiVariables = true; }; }