NixOS-Config/modules/system/devices/boot/default.nix

14 lines
170 B
Nix
Raw Normal View History

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