Files
nixos-configuration/fonts.nix
2024-12-18 09:47:11 +01:00

20 lines
284 B
Nix

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