From 6d1053c891bfc0c4bc29bd236ffe94af9e966eaa Mon Sep 17 00:00:00 2001 From: Alexander Heldt Date: Tue, 3 Oct 2023 09:40:32 +0200 Subject: [PATCH] pinwheel: Increase `fs.inotify.max_user_instances` to `1024` --- hosts/pinwheel/configuration.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hosts/pinwheel/configuration.nix b/hosts/pinwheel/configuration.nix index eb60177..b459eba 100644 --- a/hosts/pinwheel/configuration.nix +++ b/hosts/pinwheel/configuration.nix @@ -47,6 +47,12 @@ boot = { kernelPackages = pkgs.linuxPackages_latest; + kernel = { + sysctl = { + "fs.inotify.max_user_instances" = 1024; # default: 128 + }; + }; + loader = { systemd-boot.enable = true; efi.canTouchEfiVariables = true;