System/home-manager/modules/programs/fonts.nix

38 lines
605 B
Nix
Raw Normal View History

2024-11-29 11:14:23 +00:00
{
config,
lib,
pkgs,
...
2025-01-13 19:53:42 +00:00
}: {
2024-11-29 11:14:23 +00:00
fonts.fontconfig = {
enable = true;
defaultFonts = {
emoji = [
"Noto Emoji"
"Noto Color Emoji"
];
2025-01-13 19:53:42 +00:00
monospace = ["JetBrainsMono-NF-Regular"];
sansSerif = ["Roboto"];
2024-11-29 11:14:23 +00:00
};
};
home.packages = with pkgs; [
# Font viewer
gnome-font-viewer
fontpreview
# Fonts
noto-fonts
noto-fonts-cjk-sans
noto-fonts-cjk-serif
noto-fonts-color-emoji
noto-fonts-monochrome-emoji
roboto
(nerdfonts.override {
fonts = [
"ZedMono"
"JetBrainsMono"
];
})
];
}