From 9a3499ab6ce47b297a79cb85ce379261caa88955 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Sat, 21 May 2022 23:07:19 +0200 Subject: [PATCH] feat(ful): limit to 1 configuration this circumvents space issues on the /boot partition --- systems/ful/hardware-configuration.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/systems/ful/hardware-configuration.nix b/systems/ful/hardware-configuration.nix index 566c567..ced6667 100644 --- a/systems/ful/hardware-configuration.nix +++ b/systems/ful/hardware-configuration.nix @@ -8,7 +8,10 @@ boot = { loader = { - systemd-boot.enable = true; + systemd-boot = { + enable = true; + configurationLimit = 1; + }; efi.canTouchEfiVariables = true; }; initrd = {