moved fonts.nix to global setings

This commit is contained in:
2024-09-15 15:58:18 -04:00
parent 151e444a07
commit 86025d17c4
3 changed files with 1 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
{ pkgs, ... }:
{
fonts = {
fontconfig.enable = true;
enableDefaultPackages = true;
packages = with pkgs; [
nerdfonts
];
};
}