From: Skullheadx Date: Sun, 9 Nov 2025 03:35:29 +0000 (-0500) Subject: git credential oauth X-Git-Url: http://git.skullheadx.com/nixos/static/git-logo.png?a=commitdiff_plain;h=6f61668320cf0e59217b7278648bc317cb1d5783;p=nixos.git git credential oauth --- diff --git a/configuration.nix b/configuration.nix index 5b5f01f..5de90d1 100644 --- a/configuration.nix +++ b/configuration.nix @@ -74,9 +74,8 @@ # List packages installed in system profile. To search, run: # $ nix search wget environment.systemPackages = with pkgs; [ - vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. + vim wget - git hyprland kitty libnotify @@ -89,6 +88,7 @@ statix python314 zig + git-credential-oauth ]; programs.git = { @@ -99,6 +99,10 @@ email = "admonty1@protonmail.com"; }; pull.rebase = true; + credential = { + helper = "oauth"; + }; + }; };