24 lines
633 B
Nix
24 lines
633 B
Nix
{ pkgs-unstable, config, ... }: {
|
|
# Fonts
|
|
fonts = {
|
|
fontconfig = {
|
|
defaultFonts = {
|
|
# emoji = [ "Noto Color Emoji" ];
|
|
monospace = [ "JetBrainsMono Nerd Font" ];
|
|
# sansSerif = [ "Arimo Nerd Font" "Sarasa Gothic SC" ];
|
|
# serif = [ "Arimo Nerd Font" "Sarasa Gothic SC" ];
|
|
};
|
|
includeUserConf = false;
|
|
};
|
|
|
|
packages = with pkgs-unstable; [
|
|
# (nerdfonts.override { fonts = [ "Arimo" "JetBrainsMono" ]; })
|
|
# nerdfonts
|
|
nerd-fonts.jetbrains-mono
|
|
nerd-fonts.arimo
|
|
# noto-fonts-emoji
|
|
# sarasa-gothic
|
|
font-awesome
|
|
];
|
|
};
|
|
}
|