Files
dotfiles/system-modules/fonts.nix
Lennart J. Kurzweg (Nx2) b8c1c7f302 North 20
2024-06-20 20:38:45 +02:00

16 lines
309 B
Nix

{ pkgs, ... }:
{
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; [
]);
}