diff options
| author | Grisha Shipunov | 2025-01-26 01:39:08 +0100 |
|---|---|---|
| committer | Grisha Shipunov | 2025-01-26 01:48:12 +0100 |
| commit | c9ddbcbc87f8be4510ba5a8acb6cc82058c01f1c (patch) | |
| tree | 1ed7a6b7a6c3b9b57ed732706a25da8ba4179082 /modules/fonts.nix | |
| parent | f1f292bcedec080b7416d41a0cf4c5df8b5840d0 (diff) | |
cleanup
Diffstat (limited to 'modules/fonts.nix')
| -rw-r--r-- | modules/fonts.nix | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/modules/fonts.nix b/modules/fonts.nix new file mode 100644 index 0000000..7ee909b --- /dev/null +++ b/modules/fonts.nix @@ -0,0 +1,43 @@ +{ pkgs, ... }: +{ + fonts.packages = with pkgs; [ + monoid + font-awesome + dejavu_fonts + julia-mono + uw-ttyp0 + gohufont + spleen + terminus_font + creep + corefonts + dina-font + fira + fira-mono + hack-font + liberation_ttf + noto-fonts + noto-fonts-cjk-sans + noto-fonts-emoji + noto-fonts-extra + proggyfonts + symbola + open-sans + twemoji-color-font + twitter-color-emoji + iosevka-bin + (nerdfonts.override { fonts = [ "Hack" ]; }) + ]; + + fonts.enableDefaultPackages = true; + fonts.fontconfig = { + enable = true; + allowBitmaps = true; + useEmbeddedBitmaps = true; + defaultFonts.emoji = [ + "Twitter Color Emoji" + "Noto Color Emoji" + ]; + }; + +} |
