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

View File

@@ -10,6 +10,7 @@
inputs.home-manager.nixosModules.home-manager
./docker.nix
./fail2ban.nix
./fonts.nix
./libs.nix
./locale.nix
./nh.nix

10
common/global/fonts.nix Normal file
View File

@@ -0,0 +1,10 @@
{ pkgs, ... }:
{
fonts = {
fontconfig.enable = true;
enableDefaultPackages = true;
packages = with pkgs; [
nerdfonts
];
};
}