ooknet/system/modules/security/pam/default.nix

23 lines
384 B
Nix

{
security = {
pam = {
loginLimits = [
{
domain = "@wheel";
item = "nofile";
type = "soft";
value = "524288";
}
{
domain = "@wheel";
item = "nofile";
type = "hard";
value = "1048576";
}
];
services = {
hyprlock = {};
};
};
};
}