2020-04-24 23:36:52 +00:00
|
|
|
# This module gets rid of all dependencies on X11 client libraries
|
|
|
|
# (including fontconfig).
|
|
|
|
|
|
|
|
{ config, lib, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
options = {
|
|
|
|
environment.noXlibs = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
2022-08-12 12:06:08 +00:00
|
|
|
description = lib.mdDoc ''
|
2020-04-24 23:36:52 +00: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.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf config.environment.noXlibs {
|
|
|
|
programs.ssh.setXAuthLocation = false;
|
|
|
|
security.pam.services.su.forwardXAuth = lib.mkForce false;
|
|
|
|
|
|
|
|
fonts.fontconfig.enable = false;
|
|
|
|
|
|
|
|
nixpkgs.overlays = singleton (const (super: {
|
2022-09-09 14:08:57 +00:00
|
|
|
beam = super.beam_nox;
|
2020-08-20 17:08:02 +00:00
|
|
|
cairo = super.cairo.override { x11Support = false; };
|
2020-04-24 23:36:52 +00:00
|
|
|
dbus = super.dbus.override { x11Support = false; };
|
2022-12-17 10:02:37 +00:00
|
|
|
ffmpeg_4 = super.ffmpeg_4-headless;
|
|
|
|
ffmpeg_5 = super.ffmpeg_5-headless;
|
2022-09-09 14:08:57 +00:00
|
|
|
gobject-introspection = super.gobject-introspection.override { x11Support = false; };
|
2023-01-20 10:41:00 +00:00
|
|
|
gst_all_1 = super.gst_all_1 // {
|
|
|
|
gst-plugins-base = super.gst_all_1.gst-plugins-base.override { enableX11 = false; };
|
|
|
|
};
|
2022-12-28 21:21:41 +00:00
|
|
|
gpsd = super.gpsd.override { guiSupport = false; };
|
2022-12-17 10:02:37 +00:00
|
|
|
imagemagick = super.imagemagick.override { libX11Support = false; libXtSupport = false; };
|
|
|
|
imagemagickBig = super.imagemagickBig.override { libX11Support = false; libXtSupport = false; };
|
2023-01-20 10:41:00 +00:00
|
|
|
libextractor = super.libextractor.override { gtkSupport = false; };
|
2022-09-09 14:08:57 +00:00
|
|
|
libva = super.libva-minimal;
|
2022-12-28 21:21:41 +00:00
|
|
|
limesuite = super.limesuite.override { withGui = false; };
|
2023-01-20 10:41:00 +00:00
|
|
|
mpv-unwrapped = super.mpv-unwrapped.override { sdl2Support = false; x11Support = false; };
|
2022-12-28 21:21:41 +00:00
|
|
|
msmtp = super.msmtp.override { withKeyring = false; };
|
2020-04-24 23:36:52 +00:00
|
|
|
networkmanager-fortisslvpn = super.networkmanager-fortisslvpn.override { withGnome = false; };
|
2020-10-19 09:53:12 +00:00
|
|
|
networkmanager-iodine = super.networkmanager-iodine.override { withGnome = false; };
|
2020-04-24 23:36:52 +00:00
|
|
|
networkmanager-l2tp = super.networkmanager-l2tp.override { withGnome = false; };
|
|
|
|
networkmanager-openconnect = super.networkmanager-openconnect.override { withGnome = false; };
|
|
|
|
networkmanager-openvpn = super.networkmanager-openvpn.override { withGnome = false; };
|
2020-10-19 09:53:12 +00:00
|
|
|
networkmanager-sstp = super.networkmanager-vpnc.override { withGnome = false; };
|
2020-04-24 23:36:52 +00:00
|
|
|
networkmanager-vpnc = super.networkmanager-vpnc.override { withGnome = false; };
|
2022-12-17 10:02:37 +00:00
|
|
|
pinentry = super.pinentry.override { enabledFlavors = [ "curses" "tty" "emacs" ]; withLibsecret = false; };
|
2020-08-20 17:08:02 +00:00
|
|
|
qemu = super.qemu.override { gtkSupport = false; spiceSupport = false; sdlSupport = false; };
|
2022-12-17 10:02:37 +00:00
|
|
|
qrencode = super.qrencode.overrideAttrs (_: { doCheck = false; });
|
|
|
|
zbar = super.zbar.override { enableVideo = false; withXorg = false; };
|
2020-04-24 23:36:52 +00:00
|
|
|
}));
|
|
|
|
};
|
|
|
|
}
|