27 lines
518 B
Nix
Raw Normal View History

2019-08-27 20:49:08 +00:00
{ pkgs, config, lib, ... }: {
fonts = {
fonts = with pkgs; [
2020-08-07 23:27:49 +04:00
# terminus_font
# opensans-ttf
2019-08-27 20:49:08 +00:00
roboto
roboto-mono
roboto-slab
fira-code
2020-08-07 23:27:49 +04:00
# noto-fonts
# noto-fonts-emoji
2019-09-11 17:17:56 +04:00
powerline-fonts
2019-09-14 22:12:56 +04:00
material-icons
2020-02-07 03:06:50 +04:00
font-awesome_4
2019-08-27 20:49:08 +00:00
];
fontconfig = {
enable = true;
defaultFonts = {
monospace = ["Roboto Mono 13"];
sansSerif = ["Roboto 13"];
serif = ["Roboto Slab 13"];
};
};
enableDefaultFonts = true;
};
}