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
{
lib,
config,
pkgs,
...
}:
{
options.zpha.configure.fonts.enable = lib.mkEnableOption "configure fonts";
config = lib.mkIf config.zpha.configure.fonts.enable {
fonts = {
fontconfig = {
enable = true;
defaultFonts = {
serif = [ "Adwaita Sans" ];
sansSerif = [ "Adwaita Sans" ];
monospace = [ "Adwaita Mono" ];
emoji = [ "Noto Color Emoji" ];
};
};
packages = with pkgs; [
adwaita-fonts
liberation_ttf
ttf_bitstream_vera
noto-fonts
noto-fonts-color-emoji
nerd-fonts.symbols-only
fira-code
fira-mono
];
};
};
}