From d5cb84ed00b8ad91fdffc6ebe26e3e5290d705dd Mon Sep 17 00:00:00 2001 From: Leonhard Kost Date: Sun, 14 Jun 2026 12:03:52 +0200 Subject: [PATCH] feat!: remove git oauth and just use ssh keys --- home-manager/base/git.nix | 7 ------- 1 file changed, 7 deletions(-) diff --git a/home-manager/base/git.nix b/home-manager/base/git.nix index 3cf716f..5898b1d 100644 --- a/home-manager/base/git.nix +++ b/home-manager/base/git.nix @@ -1,12 +1,9 @@ { - config, - lib, pkgs, ... }: { home.packages = with pkgs; [ - git-credential-oauth git-crypt ]; @@ -15,10 +12,6 @@ settings = { user.name = "Leonhard Kost"; user.email = "leonhard.kost@gmail.com"; - credential.helper = [ - "cache --timeout 21600" - ("oauth" + lib.optionalString (!config.kekleo.graphical) " -device") - ]; }; }; }