10 lines
225 B
Nix
10 lines
225 B
Nix
{ pkgs, ... }: {
|
|
fonts.packages = with pkgs; [
|
|
material-design-icons
|
|
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
|
|
noto-fonts
|
|
noto-fonts-cjk-sans
|
|
noto-fonts-cjk-serif
|
|
noto-fonts-emoji
|
|
];
|
|
}
|