home-manager/common/fonts.nix

8 lines
102 B
Nix
Raw Normal View History

2023-08-26 22:27:36 +00:00
{pkgs, ...}: {
2023-09-24 23:29:53 +00:00
fonts.fontconfig.enable = true;
2023-08-26 22:27:36 +00:00
2023-09-24 23:29:53 +00:00
home.packages = with pkgs; [
nerdfonts
];
2023-08-26 22:27:36 +00:00
}