nixconf/common/boot.nix
2024-09-17 11:04:48 +02:00

12 lines
212 B
Nix

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