Commit 7219fe1051f5

Vincent Demeester <vincent@sbr.pm>
2019-07-01 14:15:56
profiles.ssh: add *.redhat.com specifics
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 52c00fb
Changed files (1)
modules
profiles
modules/profiles/ssh.nix
@@ -23,7 +23,6 @@ in
       hashKnownHosts = true;
       userKnownHostsFile = "${config.xdg.configHome}/ssh/known_hosts";
       controlPath = "${config.home.homeDirectory}/.ssh/sockets/%u-%l-%r@%h:%p";
-    
       matchBlocks = {
         "github.com" = {
           hostname = "github.com";
@@ -47,6 +46,9 @@ in
             controlPersist = "360";
           };
         };
+        "*.redhat.com" = {
+          user = "vdemeest";
+        };
       };
     };
   };