diff options
| author | Skullheadx <admonty1@protonmail.com> | 2025-11-08 22:35:29 -0500 |
|---|---|---|
| committer | Skullheadx <admonty1@protonmail.com> | 2025-11-08 22:35:29 -0500 |
| commit | 6f61668320cf0e59217b7278648bc317cb1d5783 (patch) | |
| tree | cf4d50fa5ecce551b262b81bc10d11cc79abe188 | |
| parent | pull rebase git (diff) | |
| download | nixos-6f61668320cf0e59217b7278648bc317cb1d5783.tar.gz nixos-6f61668320cf0e59217b7278648bc317cb1d5783.tar.bz2 nixos-6f61668320cf0e59217b7278648bc317cb1d5783.zip | |
git credential oauth
Diffstat (limited to '')
| -rw-r--r-- | configuration.nix | 8 |
1 files changed, 6 insertions, 2 deletions
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"; + }; + }; }; |
