tvl-depot/system/modules/fonts.nix

13 lines
208 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
{
fonts = {
fonts = with pkgs; [
nerdfonts
noto-fonts-emoji
twitter-color-emoji
];
fontconfig.defaultFonts.emoji = ["Twitter Color Emoji"];
};
}