diff --git a/modules/boot/loader/grub.nix b/modules/boot/loader/grub.nix index 8fbd366..038bcfb 100644 --- a/modules/boot/loader/grub.nix +++ b/modules/boot/loader/grub.nix @@ -14,7 +14,7 @@ in { config = mkIf cfg.enable { boot.loader.grub.enable = true; - boot.loader.grub.device = "/dev/sda"; - boot.loader.grub.configurationLimit = 10; + boot.loader.grub.device = "/dev/sda"; # TODO This is probably incorrect + boot.loader.grub.configurationLimit = 100; }; } diff --git a/modules/boot/loader/systemd.nix b/modules/boot/loader/systemd.nix index 9e3c53e..2ba5861 100644 --- a/modules/boot/loader/systemd.nix +++ b/modules/boot/loader/systemd.nix @@ -14,6 +14,6 @@ in { config = mkIf cfg.enable { boot.loader.systemd-boot.enable = true; - boot.loader.systemd-boot.configurationLimit = 10; + boot.loader.systemd-boot.configurationLimit = 100; }; }