nixos-config/home-manager/profiles/fontconfig/default.nix
2024-12-21 21:36:01 +08:00

16 lines
301 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
noto-fonts
noto-fonts-cjk-sans
noto-fonts-cjk-serif
noto-fonts-emoji
roboto-mono
nerd-fonts.roboto-mono
];
fonts.fontconfig.enable = true;
xdg.configFile."fontconfig/conf.d/30-default-fonts.conf".source = ./fonts.conf;
}