nixcfg/common/systemd-boot.nix

11 lines
157 B
Nix
Raw Normal View History

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