summary refs log tree commit diff
path: root/modules/config/no-x-libs.nix
blob: 77890b49c679f7c877272c20278501a1f311213c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ config, pkgs, ... }:

{
  options = {
    environment.noXlibs = pkgs.lib.mkOption {
      default = false;
      example = true;
      description = ''
        Switch off the options in the default configuration that require X libraries.
        Currently this includes: ssh X11 forwarding, dbus, fonts.enableCoreFonts,
        fonts.enableFontConfig
      '';
    };
  };

  config = pkgs.lib.mkIf config.environment.noXlibs {
    programs.ssh.setXAuthLocation = false;
    fonts = {
      enableCoreFonts = false;
      enableFontConfig = false;
    };
  };
}