Added git credential helper; removed gh

This commit is contained in:
Jurn Wubben 2025-06-23 20:39:47 +02:00
parent 664594c064
commit 45cc3df817
3 changed files with 13 additions and 2 deletions

View file

@ -2,11 +2,12 @@
imports = [ imports = [
./direnv.nix ./direnv.nix
./fish.nix ./fish.nix
./git.nix
./other.nix ./other.nix
./repl ./repl
./starship.nix ./starship.nix
./transfer.nix
./yazi.nix ./yazi.nix
./zoxide.nix ./zoxide.nix
./transfer.nix
]; ];
} }

11
home/shell/git.nix Normal file
View file

@ -0,0 +1,11 @@
{
programs = {
git = {
enable = true;
userEmail = "jurnwubben@gmail.com";
userName = "Jurn Wubben";
extraConfig.push.autoSetupRemote = true;
};
git-credential-oauth = true;
};
}

View file

@ -7,7 +7,6 @@
}: { }: {
home.packages = home.packages =
[ [
pkgs.gh
pkgs.ripgrep pkgs.ripgrep
pkgs.p7zip pkgs.p7zip
pkgs.usbutils pkgs.usbutils