nix-configs/modules/git.nix

18 lines
346 B
Nix
Raw Normal View History

{ ... }: {
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";
};
};
};
}