Files
nix/core/boot.nix
2025-12-02 23:57:18 -06:00

16 lines
320 B
Nix

{ ... }:
{
boot = {
kernelParams = [ "fsck.mode=skip" "nvidia_drm.fbdev=1" "nvidia-drm.modeset=1" ];
initrd.checkJournalingFS = false;
loader = {
grub.splashImage = null;
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
};
}