2011-07-26 16:14:10 +02:00
|
|
|
|
# A module for ‘rtkit’, a DBus system service that hands out realtime
|
|
|
|
|
# scheduling priority to processes that ask for it.
|
|
|
|
|
|
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
|
|
with pkgs.lib;
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
options = {
|
2011-09-14 20:20:50 +02:00
|
|
|
|
|
2011-07-26 16:14:10 +02:00
|
|
|
|
security.rtkit.enable = mkOption {
|
2013-10-30 17:37:45 +01:00
|
|
|
|
type = types.bool;
|
2011-07-26 16:14:10 +02:00
|
|
|
|
default = false;
|
|
|
|
|
description = ''
|
|
|
|
|
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 20:20:50 +02:00
|
|
|
|
|
2011-07-26 16:14:10 +02:00
|
|
|
|
|
|
|
|
|
config = mkIf config.security.rtkit.enable {
|
|
|
|
|
|
|
|
|
|
environment.systemPackages = [ pkgs.rtkit ];
|
|
|
|
|
|
|
|
|
|
services.dbus.packages = [ pkgs.rtkit ];
|
|
|
|
|
|
|
|
|
|
users.extraUsers = singleton
|
|
|
|
|
{ name = "rtkit";
|
|
|
|
|
uid = config.ids.uids.rtkit;
|
|
|
|
|
description = "RealtimeKit daemon";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|