Change-Id: Ib2572fea5fc81d6b4d321a2e317a02398d0ae612 Reviewed-on: https://cl.tvl.fyi/c/depot/+/11292 Tested-by: BuildkiteCI Reviewed-by: aspen <root@gws.fyi> Autosubmit: aspen <root@gws.fyi>
13 lines
233 B
Nix
13 lines
233 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
fonts = {
|
|
packages = with pkgs; [
|
|
nerdfonts
|
|
noto-fonts-emoji
|
|
twitter-color-emoji
|
|
weather-icons
|
|
];
|
|
|
|
fontconfig.defaultFonts.emoji = [ "Twitter Color Emoji" ];
|
|
};
|
|
}
|