nixdots/system/boot/systemd-boot.nix
2024-03-23 21:48:54 +01:00

12 lines
185 B
Nix

_: {
boot.loader = {
systemd-boot = {
enable = true;
memtest86.enable = true;
editor = true;
};
efi.canTouchEfiVariables = true;
timeout = 3;
};
}