Files
setup-machines/nixos/boot.nix

9 lines
184 B
Nix
Raw Normal View History

2024-08-19 14:35:42 +02:00
{ config, pkgs, ... }:
{
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.systemd-boot.configurationLimit = 5;
2024-08-19 14:35:42 +02:00
}