Limit boot entries on NixOS

This commit is contained in:
Sridhar Ratnakumar 2025-01-02 11:02:59 -05:00
parent 550fccc164
commit 3c64a77f1f

View file

@ -1,5 +1,5 @@
# Configuration common to all Linux systems
{ flake, pkgs, ... }:
{ flake, ... }:
let
inherit (flake) config inputs;
@ -20,4 +20,6 @@ in
./linux/self-ide.nix
./linux/current-location.nix
];
boot.loader.grub.configurationLimit = 5; # Who needs more?
}