2014-04-14 07:26:48 -07:00
|
|
|
{ config, lib, pkgs, ... }:
|
2009-09-20 08:07:19 -07:00
|
|
|
|
2014-04-14 07:26:48 -07:00
|
|
|
with lib;
|
2013-10-30 09:37:45 -07:00
|
|
|
|
2009-09-20 08:07:19 -07:00
|
|
|
{
|
|
|
|
options = {
|
2013-10-30 09:37:45 -07:00
|
|
|
environment.noXlibs = mkOption {
|
|
|
|
type = types.bool;
|
2009-09-20 08:07:19 -07:00
|
|
|
default = false;
|
2009-09-20 11:15:52 -07:00
|
|
|
description = ''
|
|
|
|
Switch off the options in the default configuration that require X libraries.
|
2012-08-17 11:45:43 -07:00
|
|
|
Currently this includes: ssh X11 forwarding, dbus, fonts.enableCoreFonts,
|
2010-04-15 08:47:26 -07:00
|
|
|
fonts.enableFontConfig
|
2009-09-20 11:15:52 -07:00
|
|
|
'';
|
2009-09-20 08:07:19 -07:00
|
|
|
};
|
|
|
|
};
|
2013-10-01 05:45:20 -07:00
|
|
|
|
2013-10-30 09:37:45 -07:00
|
|
|
config = mkIf config.environment.noXlibs {
|
2012-03-25 08:42:05 -07:00
|
|
|
programs.ssh.setXAuthLocation = false;
|
2009-09-20 08:07:19 -07:00
|
|
|
fonts = {
|
|
|
|
enableCoreFonts = false;
|
|
|
|
enableFontConfig = false;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|