2023-11-04 12:49:54 +00:00
|
|
|
{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
|
|
|
|
2023-11-04 12:49:54 +00:00
|
|
|
home.packages = with pkgs; [
|
2023-11-17 05:38:25 +00:00
|
|
|
### Inter
|
2023-11-04 12:49:54 +00:00
|
|
|
inter
|
|
|
|
|
2023-11-17 05:38:25 +00:00
|
|
|
### JetBrains Mono Nerd Font
|
|
|
|
(nerdfonts.override {fonts = ["JetBrainsMono"];})
|
2023-11-08 07:34:00 +00:00
|
|
|
|
|
|
|
### Adobe Source Han
|
|
|
|
source-han-sans
|
|
|
|
source-han-serif
|
|
|
|
source-han-mono
|
|
|
|
|
|
|
|
### Noto Fonts
|
|
|
|
noto-fonts
|
2023-11-25 07:44:55 +00:00
|
|
|
noto-fonts-color-emoji
|
2023-11-04 12:49:54 +00:00
|
|
|
];
|
|
|
|
}
|