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