nixdots/system/boot/systemd-boot.nix

12 lines
185 B
Nix
Raw Normal View History

2024-03-21 20:47:25 +00:00
_: {
boot.loader = {
systemd-boot = {
enable = true;
memtest86.enable = true;
editor = true;
};
efi.canTouchEfiVariables = true;
timeout = 3;
};
}