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

15 lines
469 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 = lib.mkDefault {
emoji = [ "Font Awesome 6 Free" "Noto Color Emoji" ];
monospace = [ "Hack" ];
serif = [ "DejaVu Serif" ];
sansSerif = [ "DejaVu Sans" ];
};
enableDefaultFonts = lib.mkDefault true;
fonts = with pkgs; lib.mkDefault [ font-awesome noto-fonts-emoji hack-font ];
};
}