home-manager/common/fonts.nix

8 lines
102 B
Nix

{pkgs, ...}: {
fonts.fontconfig.enable = true;
home.packages = with pkgs; [
nerdfonts
];
}