13 lines
240 B
Nix
13 lines
240 B
Nix
{ pkgs, ... }:
|
|
{
|
|
fonts.packages = with pkgs; [
|
|
material-design-icons
|
|
(nerdfonts.override {
|
|
# fonts = [ "JetBrains Mono"];
|
|
})
|
|
noto-fonts
|
|
noto-fonts-cjk-sans
|
|
noto-fonts-cjk-serif
|
|
noto-fonts-emoji
|
|
];
|
|
}
|