nix-configs/modules/git.nix
Schrottkatze a2b42917f2 add git setup to config
in light of significant inconsistencies in the git setups of almost
all of my devices, this is something that urgently should be fixed.
2023-11-20 08:54:29 +01:00

17 lines
346 B
Nix

{ ... }: {
home-manager.users.jade = { pkgs, ... }: {
programs.git = {
enable = true;
userName = "Schrottkatze";
userEmail = "git@schrottkatze.de";
aliases = {
a = "add";
c = "commit";
ca = "commit --all";
p = "push";
pl = "pull";
s = "status";
};
};
};
}