]> Skullheadx's Git Forge - nixos.git/commitdiff
git credential oauth
authorSkullheadx <admonty1@protonmail.com>
Sun, 9 Nov 2025 03:35:29 +0000 (22:35 -0500)
committerSkullheadx <admonty1@protonmail.com>
Sun, 9 Nov 2025 03:35:29 +0000 (22:35 -0500)
configuration.nix

index 5b5f01f688d30602c88450bd2e71bc6f945a6906..5de90d1833a9711595d42a8b0ea6522d3e1b40fd 100644 (file)
@@ -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 = {
         email = "admonty1@protonmail.com";
       };
       pull.rebase = true;
+      credential = {
+        helper = "oauth";
+      };
+
     };
   };