summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSkullheadx <admonty1@protonmail.com>2025-11-08 22:35:29 -0500
committerSkullheadx <admonty1@protonmail.com>2025-11-08 22:35:29 -0500
commit6f61668320cf0e59217b7278648bc317cb1d5783 (patch)
treecf4d50fa5ecce551b262b81bc10d11cc79abe188
parentpull rebase git (diff)
downloadnixos-6f61668320cf0e59217b7278648bc317cb1d5783.tar.gz
nixos-6f61668320cf0e59217b7278648bc317cb1d5783.tar.bz2
nixos-6f61668320cf0e59217b7278648bc317cb1d5783.zip
git credential oauth
Diffstat (limited to '')
-rw-r--r--configuration.nix8
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";
+ };
+
};
};