nixos-configs/common/modules/git.nix

19 lines
278 B
Nix

# Home-manager module
{ pkgs, ... }: {
programs = {
git = {
enable = true;
lfs.enable = true;
userName = "matt1432";
userEmail = "matt@nelim.org";
includes = [
{ path = "${pkgs.dracula-theme}/git-colors"; }
];
};
};
}