nixpkgs/upstart-jobs/xfs.nix
Eelco Dolstra 2fc94b76fe * Eliminate all calls to config.get.
svn path=/nixos/trunk/; revision=9619
2007-11-09 18:49:45 +00:00

20 lines
378 B
Nix

{
pkgs, config
}:
let
configFile = ./xfs.conf;
startingDependency = if config.services.gw6c.enable then "gw6c" else "network-interfaces";
in
rec {
name = "xfs";
groups = [];
users = [];
job = "
description = \"X Font Server\"
start on ${startingDependency}/started
stop on ${startingDependency}/stop
respawn ${pkgs.xorg.xfs}/bin/xfs -config ${configFile}
";
}