profiles/gui: Font config + twemoji

This commit is contained in:
kat witch 2021-05-22 21:09:28 +01:00
parent 12605094e2
commit aac1c3a8a0
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
2 changed files with 12 additions and 2 deletions

View file

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