2014-04-16 18:58:06 +04:00
|
|
|
# This module gets rid of all dependencies on X11 client libraries
|
|
|
|
# (including fontconfig).
|
|
|
|
|
2014-04-14 18:26:48 +04:00
|
|
|
{ config, lib, pkgs, ... }:
|
2009-09-20 19:07:19 +04:00
|
|
|
|
2014-04-14 18:26:48 +04:00
|
|
|
with lib;
|
2013-10-30 20:37:45 +04:00
|
|
|
|
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 = ''
|
2014-04-16 18:58:06 +04:00
|
|
|
Switch off the options in the default configuration that
|
|
|
|
require X11 libraries. This includes client-side font
|
|
|
|
configuration and SSH forwarding of X11 authentication
|
|
|
|
in. Thus, you probably do not want to enable this option if
|
|
|
|
you want to run X11 programs on this machine via SSH.
|
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;
|
2014-04-16 18:58:06 +04:00
|
|
|
security.pam.services.su.forwardXAuth = lib.mkForce false;
|
|
|
|
|
|
|
|
fonts.enableFontConfig = false;
|
|
|
|
|
|
|
|
nixpkgs.config.packageOverrides = pkgs:
|
|
|
|
{ dbus = pkgs.dbus.override { useX11 = false; }; };
|
2009-09-20 19:07:19 +04:00
|
|
|
};
|
|
|
|
}
|