2009-09-20 17:07:19 +02:00
|
|
|
{pkgs, config, ...}:
|
|
|
|
|
|
|
|
{
|
|
|
|
options = {
|
|
|
|
environment.noXlibs = pkgs.lib.mkOption {
|
|
|
|
default = false;
|
|
|
|
example = true;
|
2009-09-20 20:15:52 +02:00
|
|
|
description = ''
|
|
|
|
Switch off the options in the default configuration that require X libraries.
|
2012-08-17 20:45:43 +02:00
|
|
|
Currently this includes: ssh X11 forwarding, dbus, fonts.enableCoreFonts,
|
2010-04-15 17:47:26 +02:00
|
|
|
fonts.enableFontConfig
|
2009-09-20 20:15:52 +02:00
|
|
|
'';
|
2009-09-20 17:07:19 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
config = pkgs.lib.mkIf config.environment.noXlibs {
|
2012-03-25 17:42:05 +02:00
|
|
|
programs.ssh.setXAuthLocation = false;
|
2009-09-20 17:07:19 +02:00
|
|
|
services = {
|
|
|
|
dbus.enable = false;
|
|
|
|
};
|
|
|
|
fonts = {
|
|
|
|
enableCoreFonts = false;
|
|
|
|
enableFontConfig = false;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|