nixpkgs/upstart-jobs/disnix.nix
Eelco Dolstra 5ec1fa2060 * Tabs considered harmful.
svn path=/nixos/trunk/; revision=12407
2008-07-23 14:13:27 +00:00

25 lines
458 B
Nix

args: with args;
let
cfg = config.services.disnix;
in
{
name = "disnix";
job = ''
description "Disnix server"
start on dbus
stop on shutdown
start script
# !!! quick hack: wait until dbus has started
sleep 3
end script
respawn ${pkgs.bash}/bin/sh -c 'export PATH=/var/run/current-system/sw/bin:$PATH; export HOME=/root; ${pkgs.disnix}/bin/disnix-service'
'';
}