nix/nixos/common/modules/fonts.nix

22 lines
529 B
Nix
Raw Normal View History

{ pkgs, config, ... }: {
# Fonts
fonts = {
fontconfig = {
defaultFonts = {
emoji = [ "Noto Color Emoji" ];
2023-08-24 13:43:54 +02:00
monospace = [ "JetBrainsMono Nerd Font" ];
sansSerif = [ "Arimo Nerd Font" "Sarasa Gothic SC" ];
serif = [ "Arimo Nerd Font" "Sarasa Gothic SC" ];
};
includeUserConf = false;
};
2023-08-14 13:49:57 +02:00
packages = with pkgs; [
(nerdfonts.override { fonts = [ "Arimo" "JetBrainsMono" ]; })
noto-fonts-emoji
sarasa-gothic
font-awesome
];
};
2023-08-24 13:43:54 +02:00
}