nixos/home/common/core/fonts.nix

15 lines
206 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; [
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
hack-font
liberation_ttf
libertine
2024-06-14 18:04:48 +01:00
nerdfonts
2024-05-31 00:17:16 +01:00
];
}