-
Notifications
You must be signed in to change notification settings - Fork 5
/
fonts.nix
54 lines (48 loc) · 1.16 KB
/
fonts.nix
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
{pkgs, ...}:
{
enableGhostscriptFonts = true;
# So there is a big directory in current-system
# with all fonts.
enableFontDir = true;
fonts = ([
pkgs.dejavu_fonts
(pkgs.dejavu_fonts + "/share/fonts/truetype/")
(pkgs.ghostscript + "/share/ghostscript/fonts/")
pkgs.xorg.fontcronyxcyrillic
pkgs.xorg.fontadobe100dpi
pkgs.xorg.fontadobe75dpi
pkgs.xorg.fontxfree86type1
pkgs.mph_2b_damase
pkgs.liberation_ttf
pkgs.unifont
pkgs.unifont_upper
pkgs.wqy_zenhei
pkgs.clearlyU
pkgs.ucsFonts
pkgs.junicode
pkgs.lmodern
pkgs.libertine
pkgs.arkpandora_ttf
pkgs.andagii
pkgs.anonymousPro
pkgs.inconsolata
pkgs.theano
pkgs.oldstandard
pkgs.tempora_lgc
pkgs.gentium
pkgs.cm_unicode
pkgs.lmmath
pkgs.freefont_ttf
pkgs.comic-neue
pkgs.iosevka-bin
pkgs.symbola
pkgs.noto-fonts
pkgs.noto-fonts-cjk
pkgs.noto-fonts-emoji
pkgs.paratype-pt-mono
pkgs.paratype-pt-sans
pkgs.paratype-pt-serif
pkgs.dejavu_fonts
]);
enableCoreFonts = false;
}