snix/users/aspen/system/system/modules/fonts.nix
Aspen Smith 35a96b47d5 feat(aspen/system): Weather in i3status bar
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>
2024-03-31 19:32:14 +00:00

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" ];
};
}