mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2024-11-05 23:26:23 +01:00
a2b42917f2
in light of significant inconsistencies in the git setups of almost all of my devices, this is something that urgently should be fixed.
18 lines
346 B
Nix
18 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";
|
|
};
|
|
};
|
|
};
|
|
}
|