dotfiles/modules/hardware/boot.nix

9 lines
215 B
Nix
Raw Normal View History

2022-04-29 02:25:05 +00:00
{ ... }: {
# Use the systemd-boot EFI boot loader.
2022-05-29 17:44:45 +00:00
# These came with the system and I don't know if they're required.
2022-04-29 02:25:05 +00:00
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
}