feat(kernel): increase inotify limits for user instances/watches
Set higher limits for `fs.inotify.max_user_instances` and `fs.inotify.max_user_watches` in the kernel sysctl configuration. This improves system monitoring capabilities, particularly for applications relying on inotify.
This commit is contained in:
parent
65dd2678e3
commit
5521b0f825
|
@ -32,6 +32,11 @@
|
|||
"video=efifb:nobgrt"
|
||||
];
|
||||
|
||||
kernel.sysctl = {
|
||||
"fs.inotify.max_user_instances" = 8192;
|
||||
"fs.inotify.max_user_watches" = 524288;
|
||||
};
|
||||
|
||||
extraModulePackages = [ ];
|
||||
|
||||
initrd.luks.devices."luks-0e2792db-1b80-49a7-b2eb-54e4b5fc3502" = {
|
||||
|
|
Loading…
Reference in a new issue