Files
setup-machines/nixos/boot.nix
2025-05-19 21:25:06 +02:00

9 lines
184 B
Nix

{ config, pkgs, ... }:
{
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.systemd-boot.configurationLimit = 5;
}