Files
nix/modules/boot/bootloader.nix

12 lines
173 B
Nix

{ config, ... }:
{
boot = {
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
tmp.useTmpfs = config.host.highRam;
};
}