nix-config/nixos/_mixins/hardware/systemd-boot.nix

13 lines
266 B
Nix
Raw Normal View History

_: {
boot = {
loader = {
efi.canTouchEfiVariables = true;
systemd-boot.configurationLimit = 10;
systemd-boot.consoleMode = "max";
systemd-boot.enable = true;
systemd-boot.memtest86.enable = true;
timeout = 10;
};
};
}