27 lines
505 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
fira-code
noto-fonts
noto-fonts-emoji
2020-02-05 04:30:49 +04:00
# hasklig
2019-09-11 17:17:56 +04:00
powerline-fonts
2019-09-14 22:12:56 +04:00
material-icons
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;
};
}