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

17 lines
234 B
Nix
Raw Normal View History

{ ... }:
{
imports = [
./lanzaboote
./services
./systemd
];
2024-12-15 17:51:29 -05:00
2024-12-25 02:03:17 -05:00
boot = {
blacklistedKernelModules = [ "pcspkr" ];
kernel.sysctl = {
"vm.max_map_count" = 2147483642;
"kernel.sysrq" = 1;
};
2024-12-15 17:51:29 -05:00
};
}