home-manager/common/fonts.nix

10 lines
128 B
Nix
Raw Normal View History

2023-08-26 22:27:36 +00:00
{pkgs, ...}: {
config = {
fonts.fontconfig.enable = true;
home.packages = with pkgs; [
2023-09-03 21:40:50 +00:00
nerdfonts
2023-08-26 22:27:36 +00:00
];
};
}