git files

This commit is contained in:
Lorenz Hohermuth 2024-08-08 15:25:02 +02:00
parent 4e990e85bb
commit fe837c7695
2 changed files with 15 additions and 1 deletions

View File

@ -116,7 +116,6 @@
pkgs.neofetch
pkgs.wget
pkgs.git
pkgs.gcc
pkgs.nodejs_22
@ -132,6 +131,9 @@
pkgs.tmux # multiplexer
pkgs.steam
pkgs.gitFull # git, git gui, gitk
pkgs.tk # for git ui
];
# Some programs need SUID wrappers, can be configured further or are

View File

@ -14,6 +14,18 @@
];
};
programs.git = {
enable = true;
userName = "Lorenz Hohmermuth";
userEmail = "loflho@proton.me";
extraConfig = {
push = { autoSetupRemote = true; };
credential.helper = "${
pkgs.git.override { withLibsecret = true; }
}/bin/git-credential-libsecret";
};
};
#spotify
programs.spicetify =