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, ... }:
{
fonts.fontconfig = {
enable = true;
defaultFonts = {
emoji = [
"Twitter Color Emoji"
];
fonts = {
enableDefaultFonts = true;
fontDir.enable = true;
fontconfig = {
enable = true;
defaultFonts = {
emoji = [
"Twitter Color Emoji"
];
};
};
};
fonts.fonts = with pkgs; [
font-awesome
nerdfonts
emacs-all-the-icons-fonts
twitter-color-emoji
font-awesome
nerdfonts
emacs-all-the-icons-fonts
twitter-color-emoji
];
}