We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b670e56 commit d3363d8Copy full SHA for d3363d8
system/programs/fonts.nix
@@ -24,16 +24,11 @@
24
enableDefaultPackages = false;
25
26
# user defined fonts
27
- # the reason there's Noto Color Emoji everywhere is to override DejaVu's
28
- # B&W emojis that would sometimes show instead of some Color emojis
29
- fontconfig.defaultFonts = let
30
- addAll = builtins.mapAttrs (_: v: v ++ ["Noto Color Emoji"]);
31
- in
32
- addAll {
33
- serif = ["Libertinus Serif"];
34
- sansSerif = ["Inter"];
35
- monospace = ["JetBrains Mono Nerd Font"];
36
- emoji = [];
37
- };
+ fontconfig.defaultFonts = {
+ serif = ["Libertinus Serif"];
+ sansSerif = ["Inter"];
+ monospace = ["JetBrains Mono Nerd Font"];
+ emoji = ["Noto Color Emoji"];
+ };
38
};
39
}
0 commit comments