2024-12-02 03:57:34 -07:00
|
|
|
{ pkgs, ... }:
|
|
|
|
{
|
|
|
|
fonts = {
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|