added some git config

This commit is contained in:
John Lancaster
2024-09-13 23:51:27 +00:00
parent 7fbeb2513f
commit d8b3967829

View File

@@ -47,10 +47,13 @@ in
useGlobalPkgs = true; useGlobalPkgs = true;
users.appdaemon = { pkgs, ... }: { users.appdaemon = { pkgs, ... }: {
home.stateVersion = stateVersion; home.stateVersion = stateVersion;
programs.ssh.enable = true;
home.packages = [ home.packages = [
unstable.uv unstable.uv
]; ];
programs = {
ssh.enable = true;
git.extraConfig.credential.helper = "store --file ~/.git-credentials";
};
}; };
}; };
system.stateVersion = stateVersion; system.stateVersion = stateVersion;