git: add to config
This commit is contained in:
parent
0f1f2f70ad
commit
51787b8a91
2 changed files with 40 additions and 0 deletions
|
@ -13,6 +13,7 @@
|
||||||
./neovim
|
./neovim
|
||||||
./rofi
|
./rofi
|
||||||
./thunderbird
|
./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";
|
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
39
home/git/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue