nix/hosts/laptop/config/fonts.nix

27 lines
663 B
Nix
Raw Normal View History

2024-12-02 03:57:34 -07:00
{ pkgs, ... }:
{
fonts = {
2024-12-21 11:15:14 -07:00
fontDir.enable = true;
2024-12-02 03:57:34 -07:00
packages = with pkgs; [
2024-12-11 00:59:49 -07:00
# Core fonts (Arial, Times new roman and the such)
corefonts
vistafonts
# Normal fonts
2024-12-02 03:57:34 -07:00
symbola
noto-fonts
noto-fonts-cjk-sans
noto-fonts-emoji
2024-12-11 00:59:49 -07:00
# Monospaced
2024-12-02 03:57:34 -07:00
fira-code
fira-code-symbols
jetbrains-mono
# Nerd fonts
] ++ (with pkgs.nerd-fonts; [
fira-code
jetbrains-mono
]);
# Disable any fonts not defined above
enableDefaultPackages = false;
};
}