Created
December 20, 2022 18:30
-
-
Save Moredread/5d1ef7bcfa9eb17d055a2636ddfe3cb6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ config, lib, pkgs, ... }: | |
{ | |
fonts = { | |
enableDefaultFonts = true; | |
fonts = with pkgs; [ | |
#font-awesome_4 | |
corefonts # Microsoft free fonts | |
dejavu_fonts | |
fira | |
fira-mono | |
line-awesome | |
google-fonts | |
inconsolata # monospaced | |
libertine | |
mononoki | |
nerdfonts | |
open-dyslexic | |
overpass | |
oxygenfonts | |
powerline-fonts | |
source-code-pro | |
source-sans-pro | |
source-serif-pro | |
ttf_bitstream_vera | |
ubuntu_font_family # Ubuntu fonts | |
unifont # some international languages | |
]; | |
fontconfig = { | |
antialias = true; | |
cache32Bit = true; | |
hinting.enable = true; | |
hinting.autohint = true; | |
defaultFonts = { | |
monospace = [ "Source Code Pro" ]; | |
sansSerif = [ "Source Sans Pro" ]; | |
serif = [ "Source Serif Pro" ]; | |
}; | |
}; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment