13 lines
238 B
Nix
13 lines
238 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
|
|
];
|
|
}
|