nix-files/hosts/common/programs/fontconfig.nix

15 lines
427 B
Nix
Raw Normal View History

2023-07-07 23:44:45 +00:00
{ config, lib, pkgs, ... }:
{
fonts = lib.mkIf config.sane.programs.fontconfig.enabled {
fontconfig.enable = true;
fontconfig.defaultFonts = {
2023-07-07 23:44:45 +00:00
emoji = [ "Font Awesome 6 Free" "Noto Color Emoji" ];
monospace = [ "Hack" ];
serif = [ "DejaVu Serif" ];
sansSerif = [ "DejaVu Sans" ];
};
enableDefaultFonts = true;
fonts = with pkgs; [ font-awesome noto-fonts-emoji hack-font ];
2023-07-07 23:44:45 +00:00
};
}