forked from colonelpanic/dotfiles
32 lines
612 B
Nix
32 lines
612 B
Nix
{ pkgs, ... }:
|
|
{
|
|
# Enable the gtk icon cache
|
|
gtk.iconCache.enable = true;
|
|
|
|
fonts = {
|
|
fonts = with pkgs; [
|
|
dejavu_fonts
|
|
emojione
|
|
fira-code
|
|
fira-mono
|
|
font-awesome-ttf
|
|
noto-fonts-emoji
|
|
roboto
|
|
source-code-pro
|
|
source-sans-pro
|
|
source-serif-pro
|
|
twemoji-color-font
|
|
emacs-all-the-icons-fonts
|
|
];
|
|
fontconfig = {
|
|
allowBitmaps = true;
|
|
useEmbeddedBitmaps = true;
|
|
defaultFonts = {
|
|
monospace = [ "Fira Code" ];
|
|
sansSerif = [ "Roboto" ];
|
|
serif = [ "Source Serif Pro" ];
|
|
};
|
|
};
|
|
};
|
|
}
|