.dotfiles/.config/home-manager/fonts.nix

16 lines
243 B
Nix
Raw Normal View History

2023-10-18 23:12:01 +00:00
{ 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
];
}