blob: 3716c96aeccc7c0c79da5097c3c925f42f8e7c70 [file] [log] [blame]
{pkgs, ...}: {
config.fonts = {
fonts = with pkgs; [
roboto
roboto-mono
roboto-slab
twitter-color-emoji
font-awesome
material-design-icons
powerline-symbols
];
fontDir.enable = true;
enableDefaultFonts = true;
fontconfig.defaultFonts = {
serif = ["Roboto Slab"];
sansSerif = ["Roboto"];
monospace = ["Roboto Mono"];
emoji = ["Twitter Color Emoji"];
};
};
}