this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(core/kernel): add `vm.max_map_count` sysctl param

+4 -1
+4 -1
modules/core/kernel.nix
··· 23 23 else if cfg.type == "xanmod" 24 24 then pkgs.linuxKernel.packages.linux_xanmod_latest 25 25 else throw "Unknown kernel type."; 26 - kernel.sysctl."kernel.panic" = 5; 26 + kernel.sysctl = { 27 + "kernel.panic" = 5; 28 + "vm.max_map_count" = 2147483642; 29 + }; 27 30 }; 28 31 }; 29 32 }