blob: 3716c96aeccc7c0c79da5097c3c925f42f8e7c70 [file] [log] [blame]
Skyler Grey86cb60e2022-09-01 23:55:12 +01001{pkgs, ...}: {
2 config.fonts = {
3 fonts = with pkgs; [
4 roboto
5 roboto-mono
6 roboto-slab
7 twitter-color-emoji
8 font-awesome
9 material-design-icons
10 powerline-symbols
11 ];
12
13 fontDir.enable = true;
14 enableDefaultFonts = true;
15
16 fontconfig.defaultFonts = {
17 serif = ["Roboto Slab"];
18 sansSerif = ["Roboto"];
19 monospace = ["Roboto Mono"];
20 emoji = ["Twitter Color Emoji"];
21 };
22 };
23}