system/hosts/asus-gl553vd/configs/boot.nix

14 lines
197 B
Nix
Raw Normal View History

2024-04-16 02:51:46 +03:00
{ ... }:
{
# Use the systemd-boot EFI boot loader.
boot.loader = {
systemd-boot = {
enable = true;
configurationLimit = 10;
};
efi.canTouchEfiVariables = true;
};
}