increase inotify limits

This commit is contained in:
Sean Buckley 2023-06-30 22:25:25 -04:00
parent b1647b18db
commit 29adc840a6

View file

@ -11,6 +11,10 @@
boot = { boot = {
zfs.forceImportRoot = false; zfs.forceImportRoot = false;
initrd.availableKernelModules = [ "nvme" ]; initrd.availableKernelModules = [ "nvme" ];
kernel.sysctl = {
"fs.inotify.max_user_instances" = 65536;
"fs.inotify.max_user_watches" = 1048576;
};
kernelParams = [ kernelParams = [
"amdgpu.gpu_recovery=1" "amdgpu.gpu_recovery=1"
"nohibernate" "nohibernate"