From bd0eef087ece58ec89aaaa9bdc0b684f062f3a0e Mon Sep 17 00:00:00 2001 From: teidesu Date: Tue, 23 Apr 2024 13:24:56 +0300 Subject: [PATCH] fix(koi): increase fd limit --- hosts/koi/configuration.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hosts/koi/configuration.nix b/hosts/koi/configuration.nix index b058cf2..e3f5d47 100755 --- a/hosts/koi/configuration.nix +++ b/hosts/koi/configuration.nix @@ -78,5 +78,11 @@ ''; hardware.bluetooth.enable = true; + security.pam.loginLimits = [{ + domain = "*"; + type = "soft"; + item = "nofile"; + value = "8192"; + }]; }