nixos/home/common/core/fonts.nix

11 lines
228 B
Nix
Raw Normal View History

2024-05-31 00:17:16 +01:00
{ pkgs, ... }:
{
fonts.fontconfig.enable = true;
home.packages = [
pkgs.noto-fonts
pkgs.nerdfonts # loads the complete collection. look into overide for FiraMono or potentially mononoki
pkgs.meslo-lgs-nf
];
}