22 lines
397 B
Nix
22 lines
397 B
Nix
{
|
|
den.aspects.boot = {
|
|
nixos = {
|
|
boot = {
|
|
# kernelPackages = lib.mkForce pkgs.linuxPackages_zen;
|
|
|
|
initrd.checkJournalingFS = false;
|
|
|
|
loader = {
|
|
grub.splashImage = null;
|
|
|
|
systemd-boot = {
|
|
enable = true;
|
|
configurationLimit = 25;
|
|
};
|
|
|
|
efi.canTouchEfiVariables = true;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
} |