mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2024-11-05 23:26:23 +01:00
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";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|