{ config, pkgs, ... }:

{
	fonts.fontconfig.enable = true;

	home.packages = with pkgs; [
		dejavu_fonts
		freefont_ttf
		liberation_ttf
		(nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
		noto-fonts
		roboto
		twitter-color-emoji
	];
}