nix/hosts/laptop-server/config/bootloader.nix

14 lines
222 B
Nix
Raw Normal View History

2024-12-11 19:32:45 -07:00
{ ... }:
{
boot = {
loader = {
systemd-boot = {
enable = true;
};
efi.canTouchEfiVariables = true;
};
initrd.systemd.enable = true;
2024-12-11 19:32:45 -07:00
};
}