Generalize more boot whatever

This commit is contained in:
Jimbo 2024-12-25 02:03:17 -05:00
parent e2b093a0bb
commit c16bdf2280
5 changed files with 10 additions and 94 deletions

View file

@ -6,8 +6,11 @@
./systemd
];
boot.kernel.sysctl = {
"vm.max_map_count" = 2147483642;
"kernel.sysrq" = 1;
boot = {
blacklistedKernelModules = [ "pcspkr" ];
kernel.sysctl = {
"vm.max_map_count" = 2147483642;
"kernel.sysrq" = 1;
};
};
}