nix/module/Realtime.nix

20 lines
321 B
Nix
Raw Normal View History

# Improve DE performance.
{
2024-11-04 04:37:29 +03:00
lib,
config,
...
}: let
cfg = config.module.realtime;
in {
options.module.realtime.enable = lib.mkEnableOption "the realtime access.";
2024-06-25 04:04:39 +03:00
2024-11-04 04:37:29 +03:00
config = lib.mkIf cfg.enable {
security.pam.loginLimits = [{
domain = "@users";
item = "rtprio";
type = "-";
value = 1;
}];
};
2024-03-28 12:01:06 +03:00
}