Created
January 25, 2017 11:42
-
-
Save HanStolpo/0b5085bdc906a9c3e2631b9dd52d6d0a to your computer and use it in GitHub Desktop.
nixos font config
This file contains hidden or 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
| 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