mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-12-21 19:24:15 +00:00
increase inotify limits
This commit is contained in:
parent
b1647b18db
commit
29adc840a6
1 changed files with 4 additions and 0 deletions
|
@ -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"
|
||||||
|
|
Loading…
Reference in a new issue