2019-03-20 02:57:59 +01:00
|
|
|
{ pkgs, lib, config, ... }:
|
2019-02-26 13:44:40 +01:00
|
|
|
|
2019-03-20 02:57:59 +01:00
|
|
|
with lib;
|
|
|
|
|
|
|
|
mkIf (elem "fonts" config.machine.conffiles) {
|
2019-02-26 13:44:40 +01:00
|
|
|
fonts = {
|
|
|
|
enableFontDir = true;
|
|
|
|
enableGhostscriptFonts = true;
|
|
|
|
fontconfig = {
|
|
|
|
enable = true;
|
|
|
|
ultimate.enable = true;
|
|
|
|
includeUserConf = false;
|
|
|
|
};
|
|
|
|
fonts = with pkgs; [
|
|
|
|
corefonts # Microsoft free fonts
|
|
|
|
dejavu_fonts
|
2019-05-04 13:47:21 +02:00
|
|
|
font-awesome-ttf
|
2019-02-26 13:44:40 +01:00
|
|
|
inconsolata # monospaced
|
2019-05-04 13:47:21 +02:00
|
|
|
noto-fonts
|
2019-02-26 13:44:40 +01:00
|
|
|
noto-fonts-cjk
|
2019-05-04 13:47:21 +02:00
|
|
|
noto-fonts-emoji
|
|
|
|
noto-fonts-extra
|
2019-02-26 13:44:40 +01:00
|
|
|
powerline-fonts
|
|
|
|
source-han-sans-japanese
|
|
|
|
source-han-sans-korean
|
|
|
|
source-han-sans-simplified-chinese
|
|
|
|
source-han-sans-traditional-chinese
|
|
|
|
symbola
|
|
|
|
ubuntu_font_family
|
|
|
|
wqy_microhei
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|