push
This commit is contained in:
parent
7b8005c867
commit
4731e545bb
44 changed files with 742 additions and 1233 deletions
29
navi/navi/git.nix
Normal file
29
navi/navi/git.nix
Normal 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 ];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue