This commit is contained in:
itamar 2026-04-10 22:42:37 +03:00
parent 7b8005c867
commit 4731e545bb
No known key found for this signature in database
GPG key ID: D8277CDCD4F544E9
44 changed files with 742 additions and 1233 deletions

29
navi/navi/git.nix Normal file
View file

@ -0,0 +1,29 @@
{ pkgs, ... }:
{
programs.git = {
enable = true;
userName = "laniakea";
userEmail = "itamar@itamar.site";
ignores = [ "*.swp" "result" ];
signing = {
key = "72F74E167C220C451CF29C09D8277CDCD4F544E9";
signByDefault = true;
};
extraConfig = {
commit.gpgSign = true;
tag.gpgSign = true;
push.autoSetupRemote = true;
};
};
programs.gh = {
enable = true;
settings = {
git_protocol = "ssh";
version = 1;
};
};
home.packages = [ pkgs.git-open ];
}