mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
6663af0833
running by the time the job has finished starting. This obviates the need for the sleep hack in other jobs. svn path=/nixos/trunk/; revision=14875
20 lines
274 B
Nix
20 lines
274 B
Nix
args: with args;
|
|
|
|
let
|
|
|
|
cfg = config.services.consolekit;
|
|
|
|
in
|
|
{
|
|
name = "consolekit";
|
|
|
|
job = ''
|
|
description "Console Kit Service"
|
|
|
|
start on dbus
|
|
stop on shutdown
|
|
|
|
respawn ${pkgs.ConsoleKit}/sbin/console-kit-daemon
|
|
'';
|
|
}
|