nixos-config/modules/system/devices/boot/default.nix
2025-03-24 01:08:29 -04:00

20 lines
326 B
Nix

{ ... }:
{
imports = [
./extlinux
./grub
./lanzaboote
./plymouth
./services
./systemd
];
boot = {
kernelParams = [ "nouveau.config=NvGspRm=1" ];
blacklistedKernelModules = [ "pcspkr" ];
kernel.sysctl = {
"vm.max_map_count" = 2147483642;
"kernel.sysrq" = 1;
};
};
}