nixconf/common/boot.nix
2024-06-28 08:46:20 +02:00

12 lines
190 B
Nix

{lib,...}:
{
boot.loader = {
timeout = lib.mkDefault 0;
efi.canTouchEfiVariables = true;
systemd-boot = {
enable = true;
editor = false;
configurationLimit = 100;
};
};
}