Skip to content

Instantly share code, notes, and snippets.

@HanStolpo
Created January 25, 2017 11:42
Show Gist options
  • Select an option

  • Save HanStolpo/0b5085bdc906a9c3e2631b9dd52d6d0a to your computer and use it in GitHub Desktop.

Select an option

Save HanStolpo/0b5085bdc906a9c3e2631b9dd52d6d0a to your computer and use it in GitHub Desktop.
nixos font config
fonts = {
enableFontDir = true;
enableGhostscriptFonts = true;
fonts = with pkgs; [
corefonts # Micrsoft free fonts
inconsolata # monospaced
ubuntu_font_family # Ubuntu fonts
unifont # some international languages
powerline-fonts
];
fontconfig = {
defaultFonts = {
monospace = ["Roboto Mono for Powerline"];
};
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment