summaryrefslogtreecommitdiff
path: root/home/ebisu/fortune/system/fonts/default.nix
blob: 30ab4acba015e72a21d332cb5e5b0b27c1da98ce (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
{ pkgs, ... }:
{
  imports = [ ./meowsans ];

  fonts = {
    fontconfig = {
      enable = true;

      defaultFonts = {
        serif = [
          "New York Medium"
          "Hiragino Sans"
          "JoyPixels"
          "Noto Color Emoji"
          "FontAwesome"
        ];

        sansSerif = [
          "SF Pro Text"
          "Hiragino Sans"
          "JoyPixels"
          "Noto Color Emoji"
          "FontAwesome"
        ];

        monospace = [
          "SF Mono"
          "Hiragino Sans"
          "JoyPixels"
          "FontAwesome"
          "Braille"
        ];
      };
    };
  };

  home.packages = with pkgs; [
    source-code-pro
    source-han-sans
    noto-fonts
    noto-fonts-cjk-sans
    noto-fonts-cjk-serif
    noto-fonts-color-emoji
    lmodern
    hanazono
    jigmo
    iosevka
    libertine
    sarasa-gothic
    nerdfonts
    cantarell-fonts
    inter
    font-awesome
    joypixels
    pkgs.apple-fonts
    pkgs.hiragino-sans
    weather-icons
    material-design-icons
    meslo-lgs-nf
  ];

  nixpkgs.config.joypixels.acceptLicense = true;
}