11 lines
186 B
Nix
11 lines
186 B
Nix
{ pkgs, ... }: {
|
|
boot = {
|
|
loader = {
|
|
systemd-boot.enable = true;
|
|
efi.canTouchEfiVariables = true;
|
|
};
|
|
kernelPackages = pkgs.linuxPackages_xanmod_stable;
|
|
};
|
|
}
|
|
|