Files
dotfiles/system-modules/fonts.nix
Lennart J. Kurzweg (Nx2) 62d7d91dc0 sort fonts
2026-04-18 20:42:21 +02:00

21 lines
425 B
Nix

{ pkgs, ... }@all: with all;
{
fonts.packages = with pkgs; [
atkinson-hyperlegible
nerd-fonts._3270
nerd-fonts.heavy-data
nerd-fonts.jetbrains-mono
nerd-fonts.profont
nerd-fonts.proggy-clean-tt
nerd-fonts.zed-mono
newcomputermodern
noto-fonts
noto-fonts-cjk-sans
noto-fonts-cjk-serif
noto-fonts-color-emoji
] ++ (with rice.font; [
base.package
code.package
]);
}