nichts/options/desktop/fonts.nix

14 lines
238 B
Nix
Raw Normal View History

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