From 8d955bf64072ebd56e5c229e67589b53d4c923bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Mon, 22 Dec 2025 08:50:44 +0100 Subject: [PATCH] fatteh: configure systemd-boot --- systems/fatteh/hardware-configuration.nix | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/systems/fatteh/hardware-configuration.nix b/systems/fatteh/hardware-configuration.nix index e7a4e71..fae3e3b 100644 --- a/systems/fatteh/hardware-configuration.nix +++ b/systems/fatteh/hardware-configuration.nix @@ -16,8 +16,17 @@ boot.initrd.kernelModules = []; boot.kernelModules = ["kvm-intel"]; boot.extraModulePackages = []; - boot.loader.systemd-boot.enable = true; - boot.loader.efi.canTouchEfiVariables = true; + + boot = { + loader = { + efi.canTouchEfiVariables = true; + systemd-boot = { + enable = true; + configurationLimit = 5; + consoleMode = "max"; + }; + }; + }; boot.initrd.luks.devices."luks-aa6beb1b-3e54-4a0e-ac9c-e0c007d73cd5".device = "/dev/disk/by-uuid/aa6beb1b-3e54-4a0e-ac9c-e0c007d73cd5";