Files
dotfiles/system-modules/fonts.nix
Lennart J. Kurzweg (Nx2) de3973b4e4 font.nix syntax fix
2024-06-20 20:44:30 +02:00

21 lines
342 B
Nix

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