diff --git a/nixos/laptop/default.nix b/nixos/laptop/default.nix index 615e114..c36a4f8 100644 --- a/nixos/laptop/default.nix +++ b/nixos/laptop/default.nix @@ -20,6 +20,12 @@ }; boot = { + kernel = { + sysctl = { + "fs.inotify.max_user_watches" = 100000; + "fs.inotify.max_queued_events" = 100000; + }; + }; loader = { systemd-boot.enable = true; efi.canTouchEfiVariables = true;