14 lines
207 B
Nix
14 lines
207 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
fonts = {
|
|
packages = with pkgs; [
|
|
noto-fonts-emoji
|
|
noto-fonts-cjk-sans
|
|
font-awesome
|
|
symbola
|
|
material-icons
|
|
nerd-fonts.jetbrains-mono
|
|
];
|
|
};
|
|
}
|