Files
nixos-configs/modules/system/systemd-boot.nix

8 lines
167 B
Nix

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