12 lines
263 B
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 ];
|
|
};
|
|
}
|
|
|