tvl-depot/system/modules/fonts.nix
Griffin Smith 7ff91eb99a Break fonts out into their own module
More will go here
2020-05-04 13:14:02 -04:00

12 lines
208 B
Nix

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