Skip to content

Instantly share code, notes, and snippets.

@Moredread
Created December 20, 2022 18:30
Show Gist options
  • Save Moredread/5d1ef7bcfa9eb17d055a2636ddfe3cb6 to your computer and use it in GitHub Desktop.
Save Moredread/5d1ef7bcfa9eb17d055a2636ddfe3cb6 to your computer and use it in GitHub Desktop.
{ 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