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

12 lines
263 B
Nix

{ pkgs, config, ... }: {
boot = {
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
kernelPackages = pkgs.linuxPackages_xanmod_stable;
extraModulePackages = with config.boot.kernelPackages; [ xone ];
};
}