nixos/home/common/core/fonts.nix

16 lines
223 B
Nix
Raw Normal View History

2024-05-31 00:17:16 +01:00
{ pkgs, ... }:
{
fonts.fontconfig.enable = true;
2024-06-14 17:31:17 +01:00
home.packages = with pkgs; [
2024-06-15 17:24:21 +01:00
nerdfonts
2024-06-14 17:31:17 +01:00
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
hack-font
liberation_ttf
libertine
2024-06-15 13:08:55 +01:00
font-awesome
2024-05-31 00:17:16 +01:00
];
}