nix/hosts/laptop/config/fonts.nix

27 lines
No EOL
663 B
Nix

{ pkgs, ... }:
{
fonts = {
fontDir.enable = true;
packages = with pkgs; [
# Core fonts (Arial, Times new roman and the such)
corefonts
vistafonts
# Normal fonts
symbola
noto-fonts
noto-fonts-cjk-sans
noto-fonts-emoji
# Monospaced
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;
};
}