26 lines
478 B
Nix
Raw Normal View History

2019-08-27 20:49:08 +00:00
{ pkgs, config, lib, ... }: {
fonts = {
fonts = with pkgs; [
terminus_font
opensans-ttf
roboto
roboto-mono
roboto-slab
# nerdfonts
fira-code
noto-fonts
noto-fonts-emoji
hasklig
];
fontconfig = {
enable = true;
defaultFonts = {
monospace = ["Roboto Mono 13"];
sansSerif = ["Roboto 13"];
serif = ["Roboto Slab 13"];
};
};
enableDefaultFonts = true;
};
}