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