nixos-config/config/systemd-boot.nix

6 lines
153 B
Nix
Raw Normal View History

2022-01-18 10:23:54 +00:00
{ ... }: {
boot.loader.systemd-boot.enable = true;
2022-04-20 11:05:28 +00:00
boot.loader.systemd-boot.configurationLimit = 5;
2022-01-18 10:23:54 +00:00
boot.loader.efi.canTouchEfiVariables = true;
2022-01-19 08:28:39 +00:00
}