Skip to content

Commit

Permalink
fix(modules/nixos): fdlimit
Browse files Browse the repository at this point in the history
  • Loading branch information
bddvlpr committed Aug 5, 2024
1 parent fe816ea commit f6f85be
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion modules/nixos/security/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
{
security = {
pam.services.swaylock.fprintAuth = false;
pam = {
services.swaylock.fprintAuth = false;
loginLimits = [
{
domain = "*";
item = "nofile";
type = "-";
value = "524288";
}
];
};
};
}

0 comments on commit f6f85be

Please sign in to comment.