nichts/options/desktop/fonts.nix

11 lines
225 B
Nix
Raw Normal View History

{ pkgs, ... }: {
2024-04-10 14:21:41 +02:00
fonts.packages = with pkgs; [
material-design-icons
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
2024-04-10 14:21:41 +02:00
noto-fonts
noto-fonts-cjk-sans
noto-fonts-cjk-serif
noto-fonts-emoji
];
}