2014-04-16 15:58:06 +01:00
|
|
|
# This module gets rid of all dependencies on X11 client libraries
|
|
|
|
# (including fontconfig).
|
|
|
|
|
2018-07-20 21:56:59 +01:00
|
|
|
{ config, lib, ... }:
|
2009-09-20 16:07:19 +01:00
|
|
|
|
2014-04-14 15:26:48 +01:00
|
|
|
with lib;
|
2013-10-30 16:37:45 +00:00
|
|
|
|
2009-09-20 16:07:19 +01:00
|
|
|
{
|
|
|
|
options = {
|
2013-10-30 16:37:45 +00:00
|
|
|
environment.noXlibs = mkOption {
|
|
|
|
type = types.bool;
|
2009-09-20 16:07:19 +01:00
|
|
|
default = false;
|
2009-09-20 19:15:52 +01:00
|
|
|
description = ''
|
2014-04-16 15:58:06 +01: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 19:15:52 +01:00
|
|
|
'';
|
2009-09-20 16:07:19 +01:00
|
|
|
};
|
|
|
|
};
|
2013-10-01 13:45:20 +01:00
|
|
|
|
2013-10-30 16:37:45 +00:00
|
|
|
config = mkIf config.environment.noXlibs {
|
2012-03-25 16:42:05 +01:00
|
|
|
programs.ssh.setXAuthLocation = false;
|
2014-04-16 15:58:06 +01:00
|
|
|
security.pam.services.su.forwardXAuth = lib.mkForce false;
|
|
|
|
|
2014-11-30 19:36:49 +00:00
|
|
|
fonts.fontconfig.enable = false;
|
2014-04-16 15:58:06 +01:00
|
|
|
|
2018-06-11 19:12:22 +01:00
|
|
|
nixpkgs.overlays = singleton (const (super: {
|
|
|
|
dbus = super.dbus.override { x11Support = false; };
|
|
|
|
networkmanager-fortisslvpn = super.networkmanager-fortisslvpn.override { withGnome = false; };
|
|
|
|
networkmanager-l2tp = super.networkmanager-l2tp.override { withGnome = false; };
|
|
|
|
networkmanager-openconnect = super.networkmanager-openconnect.override { withGnome = false; };
|
|
|
|
networkmanager-openvpn = super.networkmanager-openvpn.override { withGnome = false; };
|
|
|
|
networkmanager-vpnc = super.networkmanager-vpnc.override { withGnome = false; };
|
|
|
|
networkmanager-iodine = super.networkmanager-iodine.override { withGnome = false; };
|
2018-12-02 11:41:15 +00:00
|
|
|
gobject-introspection = super.gobject-introspection.override { x11Support = false; };
|
2018-06-11 19:12:22 +01:00
|
|
|
}));
|
2009-09-20 16:07:19 +01:00
|
|
|
};
|
|
|
|
}
|