2011-07-26 18:14:10 +04:00
|
|
|
|
# A module for ‘rtkit’, a DBus system service that hands out realtime
|
|
|
|
|
# scheduling priority to processes that ask for it.
|
|
|
|
|
|
2014-04-14 18:26:48 +04:00
|
|
|
|
{ config, lib, pkgs, ... }:
|
2011-07-26 18:14:10 +04:00
|
|
|
|
|
2014-04-14 18:26:48 +04:00
|
|
|
|
with lib;
|
2011-07-26 18:14:10 +04:00
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
options = {
|
2011-09-14 22:20:50 +04:00
|
|
|
|
|
2011-07-26 18:14:10 +04:00
|
|
|
|
security.rtkit.enable = mkOption {
|
2013-10-30 20:37:45 +04:00
|
|
|
|
type = types.bool;
|
2011-07-26 18:14:10 +04:00
|
|
|
|
default = false;
|
2022-07-29 00:19:15 +03:00
|
|
|
|
description = lib.mdDoc ''
|
2011-07-26 18:14:10 +04:00
|
|
|
|
Whether to enable the RealtimeKit system service, which hands
|
|
|
|
|
out realtime scheduling priority to user processes on
|
|
|
|
|
demand. For example, the PulseAudio server uses this to
|
|
|
|
|
acquire realtime priority.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
};
|
2011-09-14 22:20:50 +04:00
|
|
|
|
|
2011-07-26 18:14:10 +04:00
|
|
|
|
|
|
|
|
|
config = mkIf config.security.rtkit.enable {
|
|
|
|
|
|
2014-04-18 14:21:20 +04:00
|
|
|
|
security.polkit.enable = true;
|
|
|
|
|
|
|
|
|
|
# To make polkit pickup rtkit policies
|
2011-07-26 18:14:10 +04:00
|
|
|
|
environment.systemPackages = [ pkgs.rtkit ];
|
|
|
|
|
|
2014-04-18 14:21:20 +04:00
|
|
|
|
systemd.packages = [ pkgs.rtkit ];
|
|
|
|
|
|
2011-07-26 18:14:10 +04:00
|
|
|
|
services.dbus.packages = [ pkgs.rtkit ];
|
|
|
|
|
|
2019-09-14 20:51:29 +03:00
|
|
|
|
users.users.rtkit =
|
2021-08-08 15:00:00 +03:00
|
|
|
|
{
|
|
|
|
|
isSystemUser = true;
|
|
|
|
|
group = "rtkit";
|
2011-07-26 18:14:10 +04:00
|
|
|
|
description = "RealtimeKit daemon";
|
|
|
|
|
};
|
2021-08-08 15:00:00 +03:00
|
|
|
|
users.groups.rtkit = {};
|
2011-07-26 18:14:10 +04:00
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|