nix/nixos/common/modules/fonts.nix

21 lines
538 B
Nix
Raw Normal View History

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