2009-10-12 17:36:19 +01:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
with pkgs.lib;
|
2009-03-06 12:26:57 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
|
2009-10-12 17:36:19 +01:00
|
|
|
configFile = ./xfs.conf;
|
2011-09-14 19:20:50 +01:00
|
|
|
|
2009-10-12 17:36:19 +01:00
|
|
|
in
|
|
|
|
|
|
|
|
{
|
2009-03-06 12:26:57 +00:00
|
|
|
|
2009-10-12 17:36:19 +01:00
|
|
|
###### interface
|
2009-03-06 12:26:57 +00:00
|
|
|
|
2009-10-12 17:36:19 +01:00
|
|
|
options = {
|
2011-09-14 19:20:50 +01:00
|
|
|
|
2009-10-12 17:36:19 +01:00
|
|
|
services.xfs = {
|
|
|
|
|
|
|
|
enable = mkOption {
|
|
|
|
default = false;
|
|
|
|
description = "Whether to enable the X Font Server.";
|
2009-03-06 12:26:57 +00:00
|
|
|
};
|
|
|
|
|
2009-10-12 17:36:19 +01:00
|
|
|
};
|
2009-03-06 12:26:57 +00:00
|
|
|
|
2009-10-12 17:36:19 +01:00
|
|
|
};
|
2009-03-06 12:26:57 +00:00
|
|
|
|
|
|
|
|
2009-10-12 17:36:19 +01:00
|
|
|
###### implementation
|
2009-04-30 03:29:58 +01:00
|
|
|
|
2011-03-30 18:52:34 +01:00
|
|
|
config = mkIf config.services.xfs.enable (
|
|
|
|
mkAssert config.fonts.enableFontDir "
|
|
|
|
Please enable fontDir (fonts.enableFontDir) to use xfs.
|
|
|
|
" {
|
2009-03-06 12:26:57 +00:00
|
|
|
|
2009-10-12 19:09:34 +01:00
|
|
|
jobs.xfs =
|
2009-10-12 17:36:19 +01:00
|
|
|
{ description = "X Font Server";
|
2011-09-14 19:20:50 +01:00
|
|
|
|
2012-03-04 18:44:42 +00:00
|
|
|
startOn = "started networking";
|
2009-03-06 12:26:57 +00:00
|
|
|
|
2009-10-12 17:36:19 +01:00
|
|
|
exec = "${pkgs.xorg.xfs}/bin/xfs -config ${configFile}";
|
|
|
|
};
|
2009-03-06 12:26:57 +00:00
|
|
|
|
2011-03-30 18:52:34 +01:00
|
|
|
});
|
2011-09-14 19:20:50 +01:00
|
|
|
|
2007-11-05 08:54:30 +00:00
|
|
|
}
|