dotfiles/nixos/fonts.nix

32 lines
618 B
Nix
Raw Normal View History

2021-07-10 15:29:34 -06:00
{ pkgs, ... }:
2021-07-10 15:28:43 -06:00
{
# Enable the gtk icon cache
gtk.iconCache.enable = true;
fonts = {
fonts = with pkgs; [
dejavu_fonts
emojione
2021-07-12 20:12:07 -06:00
fira-code
2021-07-10 15:28:43 -06:00
fira-mono
font-awesome-ttf
noto-fonts-emoji
roboto
source-code-pro
source-sans-pro
source-serif-pro
2021-07-12 16:44:43 -06:00
twemoji-color-font
emacs-all-the-icons-fonts
2021-07-10 15:28:43 -06:00
];
fontconfig = {
allowBitmaps = true;
useEmbeddedBitmaps = true;
defaultFonts = {
2021-07-19 19:38:18 -06:00
monospace = [ "Source Code Pro" ];
2021-07-10 15:28:43 -06:00
sansSerif = [ "Roboto" ];
serif = [ "Source Serif Pro" ];
};
};
};
}