Add home/laozi/common/core/fonts.nix

This commit is contained in:
Matthieu Morin 2024-06-09 17:13:10 +00:00
parent 8908e8bee0
commit 231aed27bf
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
{ pkgs, ... }:
{
fonts.fontconfig.enable = true;
home.packages = [
pkgs.nerdfonts # loads the complete collection. look into overide for FiraMono or potentially mononoki
];
}