fix: update NOFILE limit in systemd and PAM configurations

Increased the file descriptor limit (NOFILE) from 32000 to 32768 in systemd and PAM settings. This adjustment aligns system limits with higher resource demands.
This commit is contained in:
Harald Hoyer 2024-10-23 10:20:38 +02:00
parent d2f9061752
commit 707550547e

View file

@ -47,7 +47,7 @@ with lib.metacfg;
services.trezord.enable = true; services.trezord.enable = true;
systemd.user.extraConfig = "DefaultLimitNOFILE=32000"; systemd.user.extraConfig = "DefaultLimitNOFILE=32768";
security.pam.loginLimits = [ security.pam.loginLimits = [
{ domain = "*"; item = "nofile"; type = "-"; value = "32768"; } { domain = "*"; item = "nofile"; type = "-"; value = "32768"; }