nix/nixos/common/modules/fonts.nix
2024-12-01 22:23:23 +01:00

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