flake/users/guanranwang/home-manager/profiles/graphical-stuff/nixos/fonts.nix

25 lines
454 B
Nix
Raw Normal View History

{pkgs, ...}: {
2023-11-05 11:26:09 +00:00
fonts.fontconfig.enable = true;
2023-11-09 17:14:03 +00:00
xdg.configFile."fontconfig" = {
2023-11-14 03:22:17 +00:00
source = ../../../dotfiles/config/fontconfig;
2023-11-09 17:14:03 +00:00
recursive = true;
};
2023-11-14 03:22:17 +00:00
home.packages = with pkgs; [
2023-11-17 05:38:25 +00:00
### Inter
inter
2023-11-17 05:38:25 +00:00
### JetBrains Mono Nerd Font
(nerdfonts.override {fonts = ["JetBrainsMono"];})
### Adobe Source Han
source-han-sans
source-han-serif
source-han-mono
### Noto Fonts
noto-fonts
noto-fonts-emoji
];
}