dots/users/price/conf/fonts/default.nix

35 lines
675 B
Nix
Raw Normal View History

{ 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"
];
};
};
};
}