nix/system/Pam.nix

18 lines
247 B
Nix
Raw Normal View History

{ ... }:
{
security.pam.loginLimits = [
{
domain = "*";
item = "nofile";
type = "soft";
value = "999999999";
}
{
domain = "@users";
item = "rtprio";
type = "-";
value = 1;
}
];
2024-12-09 23:05:38 +03:00
}