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;