nix/nixos/common/modules/fonts.nix

25 lines
633 B
Nix
Raw Normal View History

2024-12-01 22:23:23 +01:00
{ pkgs-unstable, config, ... }: {
# Fonts
fonts = {
fontconfig = {
defaultFonts = {
2023-09-21 04:01:02 +02:00
# emoji = [ "Noto Color Emoji" ];
2023-08-24 13:43:54 +02:00
monospace = [ "JetBrainsMono Nerd Font" ];
2023-09-21 04:01:02 +02:00
# sansSerif = [ "Arimo Nerd Font" "Sarasa Gothic SC" ];
# serif = [ "Arimo Nerd Font" "Sarasa Gothic SC" ];
};
includeUserConf = false;
};
2024-12-01 22:23:23 +01:00
packages = with pkgs-unstable; [
2024-12-01 18:58:26 +01:00
# (nerdfonts.override { fonts = [ "Arimo" "JetBrainsMono" ]; })
2024-12-01 22:06:41 +01:00
# nerdfonts
nerd-fonts.jetbrains-mono
nerd-fonts.arimo
2023-09-21 04:01:02 +02:00
# noto-fonts-emoji
# sarasa-gothic
font-awesome
];
};
2024-12-01 18:58:26 +01:00
}