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

13 lines
222 B
Nix

{ ... }:
{
boot = {
loader = {
systemd-boot = {
enable = true;
};
efi.canTouchEfiVariables = true;
};
initrd.systemd.enable = true;
};
}