add twemoji fonts

This commit is contained in:
Seaswimmer 2024-12-22 13:07:25 -05:00
parent 0d92f67022
commit 872df4fcbb
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087

View file

@ -47,11 +47,21 @@ in
programs.partition-manager.enable = true;
fonts.packages = with pkgs; [
customfonts
corefonts
nerd-fonts.fira-code
];
fonts = {
fontconfig = {
enable = true;
defaultFonts.emoji = [
"Twitter Color Emoji"
];
};
packages = with pkgs; [
customfonts
corefonts
nerd-fonts.fira-code
twemoji-color-font
twitter-color-emoji
];
};
# Systemd user services
# See https://wiki.nixos.org/wiki/Systemd/User_Services for more information