blob: 598336790a2d276ed174e25b6153976d810213c5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{ config, lib, pkgs, ... }:
{
fonts = {
packages = with pkgs; [
nerdfonts
noto-fonts-emoji
twitter-color-emoji
weather-icons
];
fontconfig.defaultFonts.emoji = [ "Twitter Color Emoji" ];
};
}
|