flake/nixos/profiles/common/graphical/home/fonts/default.nix

49 lines
1.5 KiB
Nix
Raw Normal View History

2023-11-25 09:02:50 +00:00
{pkgs, ...}: {
2024-02-18 17:20:16 +00:00
# Fontconfig
2023-11-25 09:02:50 +00:00
xdg.configFile = {
2024-02-18 17:20:16 +00:00
"fontconfig/fonts.conf".source = ./fonts.conf;
2023-11-25 09:02:50 +00:00
"fontconfig/conf.d/web-ui-fonts.conf".source = pkgs.fetchurl {
2023-12-07 06:16:51 +00:00
url = "https://raw.githubusercontent.com/lilydjwg/dotconfig/1b22d4f0740bb5bbd7c65b6c468920775171b207/fontconfig/web-ui-fonts.conf";
2023-11-25 09:02:50 +00:00
hash = "sha256-A4DcV6HTW/IRxXN3NaI1GUfoFdalwgFLpCjgbWENdZU=";
};
"fontconfig/conf.d/source-han-for-noto-cjk.conf".source = pkgs.fetchurl {
2023-12-07 06:16:51 +00:00
url = "https://raw.githubusercontent.com/lilydjwg/dotconfig/1b22d4f0740bb5bbd7c65b6c468920775171b207/fontconfig/source-han-for-noto-cjk.conf";
2023-11-25 09:02:50 +00:00
hash = "sha256-jcdDr5VW1qZXbApgfT5FZgxonpRnLs9AY0QagfdL8ic=";
};
};
2024-02-18 17:20:16 +00:00
# Make GTK listen to fontconfig
2023-12-03 12:01:38 +00:00
dconf.settings = {
"org/gnome/desktop/wm/preferences" = {
"titlebar-font" = "Sans Bold";
};
"org/gnome/desktop/interface" = {
2024-02-18 17:20:16 +00:00
"font-name" = "Sans";
2023-12-03 12:01:38 +00:00
"document-font-name" = "Sans";
"monospace-font-name" = "Monospace";
};
};
2024-02-18 17:20:16 +00:00
# HM managed fonts
fonts.fontconfig.enable = true;
2023-11-25 09:02:50 +00:00
home.packages = with pkgs; [
### Inter
inter
### JetBrains Mono Nerd Font
(nerdfonts.override {fonts = ["JetBrainsMono"];})
### Adobe Source Han
# The reason I use Source Han instead of Noto CJK,
# is because I heard from #archlinux-cn, Adobe packages font better.
# You can 100% use noto-fonts-cjk-{sans,serif} if you prefer consistency/other reason.
source-han-sans-vf-otf
source-han-serif-vf-otf
2023-11-25 09:02:50 +00:00
### Noto Fonts
noto-fonts
noto-fonts-color-emoji
];
}