18 lines
319 B
Nix
18 lines
319 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.git = {
|
|
enable = true;
|
|
userEmail = "kontakt@aarontrom.de";
|
|
userName = "Aar0n";
|
|
ignores = [ "*.swp" ];
|
|
extraConfig = {
|
|
pull.rebase = true;
|
|
init.defaultBranch = "main";
|
|
};
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
gitAndTools.gitflow
|
|
circleci-cli
|
|
];
|
|
}
|