8c9d312e21
svn path=/nixos/trunk/; revision=9579
21 lines
396 B
Nix
21 lines
396 B
Nix
{
|
|
pkgs, config
|
|
}:
|
|
let
|
|
configFile = ./xfs.conf;
|
|
startingDependency = if (config.get [ "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}
|
|
";
|
|
}
|