git: add to config

This commit is contained in:
Nydragon 2024-05-17 07:19:37 +09:00
parent 0f1f2f70ad
commit 51787b8a91
No known key found for this signature in database
GPG key ID: 14AA30A865EA1209
2 changed files with 40 additions and 0 deletions

View file

@ -13,6 +13,7 @@
./neovim
./rofi
./thunderbird
./git
];
xdg.configFile."gtk-4.0/gtk.css".source = "${pkgs.catppuccin-gtk}/share/themes/Catppuccin-Frappe-Standard-Blue-Dark/gtk-4.0/gtk.css";

39
home/git/default.nix Normal file
View file

@ -0,0 +1,39 @@
{ pkgs, ... }:
{
programs.git = {
enable = true;
userName = "Nydragon";
userEmail = "contact@ccnlc.eu";
signing = {
key = "25FF8464F0627EC001296A4314AA30A865EA1209";
signByDefault = true;
};
extraConfig = {
push = {
autoSetupRemote = true;
};
pull = {
rebase = true;
};
core = {
editor = "${pkgs.neovim}/bin/nvim";
};
init = {
defaultBranch = "master";
};
#interactive = {
#diffFilter = "delta --color-only";
#};
#delta = {
#navigate = true;
#};
merge = {
conflictstyle = "diff3";
};
diff = {
colorMoved = "default";
};
};
delta.enable = true;
};
}