nixos-config/modules/system/devices/boot/default.nix

17 lines
234 B
Nix

{ ... }:
{
imports = [
./lanzaboote
./services
./systemd
];
boot = {
blacklistedKernelModules = [ "pcspkr" ];
kernel.sysctl = {
"vm.max_map_count" = 2147483642;
"kernel.sysrq" = 1;
};
};
}