20 lines
279 B
Nix
20 lines
279 B
Nix
{ config, pkgs, ... }:
|
|
|
|
###### FOnts AlL the f0nts ######
|
|
{
|
|
|
|
fonts.packages = with pkgs; [
|
|
noto-fonts
|
|
noto-fonts-cjk
|
|
noto-fonts-emoji
|
|
# liberation_ttf
|
|
# fira-code
|
|
# fira-code-symbols
|
|
# mplus-outline-fonts.githubRelease
|
|
# dina-font
|
|
# proggyfonts
|
|
nerdfonts
|
|
];
|
|
|
|
}
|