Attempted fonts fix

This commit is contained in:
kat witch 2021-07-15 02:33:22 +01:00
parent f9b18c7122
commit b939799bdc
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72

View file

@ -1,18 +1,23 @@
{ config, pkgs, lib, ... }: { config, pkgs, lib, ... }:
{ {
fonts.fontconfig = { fonts = {
enable = true; enableDefaultFonts = true;
defaultFonts = { fontDir.enable = true;
emoji = [ fontconfig = {
"Twitter Color Emoji" enable = true;
]; defaultFonts = {
emoji = [
"Twitter Color Emoji"
];
};
}; };
}; };
fonts.fonts = with pkgs; [ fonts.fonts = with pkgs; [
font-awesome font-awesome
nerdfonts nerdfonts
emacs-all-the-icons-fonts emacs-all-the-icons-fonts
twitter-color-emoji twitter-color-emoji
]; ];
} }