From d8b3967829ecc5e41ae502379c89b603ba932b2f Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Fri, 13 Sep 2024 23:51:27 +0000 Subject: [PATCH] added some git config --- configuration.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index e97c0fc..06a60f2 100644 --- a/configuration.nix +++ b/configuration.nix @@ -47,10 +47,13 @@ in useGlobalPkgs = true; users.appdaemon = { pkgs, ... }: { home.stateVersion = stateVersion; - programs.ssh.enable = true; home.packages = [ unstable.uv ]; + programs = { + ssh.enable = true; + git.extraConfig.credential.helper = "store --file ~/.git-credentials"; + }; }; }; system.stateVersion = stateVersion;