summary refs log tree commit diff
path: root/nixos/modules/config/fonts/fonts.nix
blob: efbd554582fcb9bd75160b06b8b6a1e4694046f3 (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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{ config, lib, pkgs, ... }:

with lib;

let
  cfg = config.fonts;

  defaultFonts =
    [ pkgs.dejavu_fonts
      pkgs.freefont_ttf
      pkgs.gyre-fonts # TrueType substitutes for standard PostScript fonts
      pkgs.liberation_ttf
      pkgs.unifont
      pkgs.noto-fonts-emoji
    ];

in

{
  imports = [
    (mkRemovedOptionModule [ "fonts" "enableCoreFonts" ] "Use fonts.fonts = [ pkgs.corefonts ]; instead.")
    (mkRenamedOptionModule [ "hardware" "video" "hidpi" "enable" ] [ "fonts" "optimizeForVeryHighDPI" ])
  ];

  options = {

    fonts = {

      # TODO: find another name for it.
      fonts = mkOption {
        type = types.listOf types.path;
        default = [];
        example = literalExpression "[ pkgs.dejavu_fonts ]";
        description = lib.mdDoc "List of primary font paths.";
      };

      enableDefaultFonts = mkOption {
        type = types.bool;
        default = false;
        description = lib.mdDoc ''
          Enable a basic set of fonts providing several font styles
          and families and reasonable coverage of Unicode.
        '';
      };

      optimizeForVeryHighDPI = mkOption {
        type = types.bool;
        default = false;
        description = lib.mdDoc ''
          Optimize configuration for very high-density (>200 DPI) displays:
            - disable subpixel anti-aliasing
            - disable hinting
            - automatically upscale the default X11 cursor
        '';
      };
    };

  };

  config = mkMerge [
    { fonts.fonts = mkIf cfg.enableDefaultFonts defaultFonts; }
    (mkIf cfg.optimizeForVeryHighDPI {
      services.xserver.upscaleDefaultCursor = mkDefault true;
      # Conforms to the recommendation in fonts/fontconfig.nix
      # for > 200DPI.
      fonts.fontconfig = {
        antialias = mkDefault false;
        hinting.enable = mkDefault false;
        subpixel.lcdfilter = mkDefault "none";
      };
    })
  ];

}