dotfiles/homes/x86_64-linux/christopher@cobalt/config/fonts.nix
2025-07-31 10:06:20 +02:00

20 lines
540 B
Nix

{pkgs, ...}: {
home.packages = with pkgs; [
font-manager
nerd-fonts.monaspace # Patched fonts
google-fonts # Google fonts
monaspace
];
fonts.fontconfig.enable = true;
home.file.".local/share/fonts" = {
# This includes FontAwesome and other proprietary fonts which are licensed,
# so I have to download them from a private repository
source = builtins.fetchGit {
url = "git@github.com:padarom/fonts.git";
rev = "2defdedf6642865648c8e57b3851a77ac0ae2d7b";
};
recursive = true;
};
}