Files
dotfiles/system-modules/fonts.nix
Lennart J. Kurzweg (Nx2) 219a19a3a8 fonts (no name2)
2024-12-02 20:46:32 +01:00

22 lines
372 B
Nix

{
pkgs,
# pkgs-unstable,
rice,
...
}:
{
fonts.packages = with pkgs; [
noto-fonts
noto-fonts-cjk-sans
noto-fonts-cjk-serif
noto-fonts-emoji
newcomputermodern
atkinson-hyperlegible
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
] ++ (with rice.font; [
base.package
code.package
# ]) ++ (with pkgs-unstable; [
]);
}