16 lines
319 B
Nix
16 lines
319 B
Nix
{ pkgs, ... }: {
|
|
environment.systemPackages = with pkgs; [ twemoji-color-font ];
|
|
fonts.packages = with pkgs; [
|
|
fira-code
|
|
fira-code-symbols
|
|
nerdfonts
|
|
noto-fonts
|
|
noto-fonts-cjk
|
|
noto-fonts-emoji
|
|
noto-fonts-monochrome-emoji
|
|
source-sans-pro
|
|
twemoji-color-font
|
|
font-awesome
|
|
];
|
|
}
|