fontconfig: re-enable

i'm not sure why this failed with lib.mkDefault
This commit is contained in:
Colin 2023-07-08 02:27:21 +00:00
parent 36dbf696e7
commit 6e3e45a9f6

View File

@ -2,13 +2,13 @@
{
fonts = lib.mkIf config.sane.programs.fontconfig.enabled {
fontconfig.enable = true;
fontconfig.defaultFonts = lib.mkDefault {
fontconfig.defaultFonts = {
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 ];
enableDefaultFonts = true;
fonts = with pkgs; [ font-awesome noto-fonts-emoji hack-font ];
};
}