10 lines
185 B
Nix
10 lines
185 B
Nix
{ pkgs, ... }: {
|
|
fonts.packages = with pkgs; [
|
|
noto-fonts noto-fonts-cjk noto-fonts-emoji
|
|
liberation_ttf
|
|
fira-code fira-code-symbols
|
|
font-awesome
|
|
nerdfonts
|
|
];
|
|
}
|