nichts/options/desktop/fonts.nix

14 lines
240 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-04-23 10:59:57 +02:00
# fonts = [ "JetBrains Mono"];
2024-04-10 14:21:41 +02:00
})
noto-fonts
noto-fonts-cjk-sans
noto-fonts-cjk-serif
noto-fonts-emoji
];
}