Merge pull request 'fix(edaas): allow edaas to load ssh-agent' (#2) from fix/WSL-ssh-agent into main

Reviewed-on: #2
This commit was merged in pull request #2.
This commit is contained in:
2026-06-02 16:23:16 +01:00
+2 -1
View File
@@ -12,7 +12,7 @@
commit.gpgsign = true; commit.gpgsign = true;
tag.gpgsign = true; tag.gpgsign = true;
gpg.format = "ssh"; gpg.format = "ssh";
user.signingkey = "~/.ssh/id_ed25519.pub"; user.signingkey = "key::ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAJMVgeRKnfX1G8coU3nAobI485aeUpGTMqH7+zbKI8o emma.thorpe@cloud.com";
user.email = "emma.thorpe@citrix.com"; user.email = "emma.thorpe@citrix.com";
}; };
}; };
@@ -40,6 +40,7 @@
pkgs.claude-code pkgs.claude-code
pkgs.google-cloud-sdk pkgs.google-cloud-sdk
]; ];
services.ssh-agent.enable = true;
home.shellAliases = { home.shellAliases = {
docker = "/run/current-system/sw/bin/docker"; docker = "/run/current-system/sw/bin/docker";
}; };