add noto fonts with colour emoji support

This commit is contained in:
Felix Schröter 2019-08-26 23:16:14 +02:00
parent f8f17ea134
commit 8876ba67c1
No known key found for this signature in database
GPG key ID: A12D7C9D2FD34458

View file

@ -62,6 +62,17 @@ in
unstable.libu2f-host unstable.libu2f-host
]; ];
# Use noto fonts with emoji support
fonts.fonts = with pkgs; [
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
];
fonts.fontconfig.penultimate.enable = false;
fonts.fontconfig.defaultFonts.monospace = ["Noto Color Emoji"];
fonts.fontconfig.defaultFonts.sansSerif = ["Noto Color Emoji"];
fonts.fontconfig.defaultFonts.serif = ["Noto Color Emoji"];
# Enable CUPS to print documents. # Enable CUPS to print documents.
services.printing.enable = true; services.printing.enable = true;