This is the result of ~100 commits to my NixOS config. Since I haven't always used `agenix-rekey`, this is another initial commit so that none of the secrets in my git history are leaked
19 lines
523 B
Nix
19 lines
523 B
Nix
{pkgs, ...}: {
|
|
home.packages = with pkgs; [
|
|
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;
|
|
};
|
|
}
|