Files
nixverse/nodes/hosts/common/system/bootloader.nix

11 lines
186 B
Nix

{ pkgs, ... }: {
boot = {
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
kernelPackages = pkgs.linuxPackages_xanmod_stable;
};
}