home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit ff7a8195a468db47f42c4a2f1add5df820d83d14
parent dcd9c5156e10e4ff13b8c06a6e94296b86c07057
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Tue, 27 Aug 2019 10:59:02 +0200

profiles.ssh: forward agent for local network

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Mmodules/profiles/ssh.nix | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/modules/profiles/ssh.nix b/modules/profiles/ssh.nix @@ -48,7 +48,10 @@ in "*.redhat.com" = { user = "vdemeest"; }; - } //cfg.machines; + "192.168.1.*" = { + forwardAgent = true; + }; + } // cfg.machines; }; }; }