nixos-config/home-manager/profiles/fontconfig/default.nix

16 lines
301 B
Nix
Raw Normal View History

2024-11-28 01:14:34 +08:00
{ pkgs, ... }:
{
home.packages = with pkgs; [
noto-fonts
noto-fonts-cjk-sans
noto-fonts-cjk-serif
noto-fonts-emoji
roboto-mono
2024-12-21 21:36:01 +08:00
nerd-fonts.roboto-mono
2024-11-28 01:14:34 +08:00
];
fonts.fontconfig.enable = true;
xdg.configFile."fontconfig/conf.d/30-default-fonts.conf".source = ./fonts.conf;
}