Remove unused file.

svn path=/nixos/branches/fix-style/; revision=14545
This commit is contained in:
Nicolas Pierron 2009-03-15 20:18:36 +00:00
parent 313c440174
commit ab4e37d53f

View file

@ -1,17 +0,0 @@
{config, pkgs, nix, nixEnvVars}:
{
name = "nix-daemon";
job = "
start on startup
stop on shutdown
respawn
script
export PATH=${if config.nix.distributedBuilds then "${pkgs.openssh}/bin:${pkgs.gzip}/bin:" else ""}${pkgs.openssl}/bin:${nix}/bin:$PATH
${nixEnvVars}
exec nice -10 ${nix}/bin/nix-worker --daemon > /dev/null 2>&1
end script
";
}