dots/users/price/conf/fonts/default.nix
Price Hiller 7369d1bc61
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 36s
refactor(hm/price): improve handling of fonts
2024-12-07 00:35:02 -06:00

35 lines
675 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
fontconfig
nerd-fonts.fira-code
nerd-fonts.symbols-only
fira-code
ibm-plex
open-sans
noto-fonts
twitter-color-emoji
vistafonts
roboto
];
fonts = {
fontconfig = {
enable = true;
defaultFonts = {
sansSerif = [ "Noto Sans" "Symbols Nerd Font" ];
serif = [ "Noto Serif" "Symbols Nerd Font" ];
monospace = [
"FiraCode Nerd Font"
"Noto Sans Mono"
"Symbols Nerd Font Mono"
];
emoji = [
"Twemoji"
"Noto Color Emoji"
"Symbols Nerd Font Mono"
];
};
};
};
}