git.jakstys.lt points to jakstIP now

This commit is contained in:
Motiejus Jakštys 2024-08-26 09:20:57 +03:00
parent 572a37c17a
commit 1c0126e35e
2 changed files with 5 additions and 1 deletions

View File

@ -23,6 +23,10 @@
] (_: null); ] (_: null);
in in
lib.mapAttrs (_name: builtins.intersectAttrs sshAttrs) myData.hosts; lib.mapAttrs (_name: builtins.intersectAttrs sshAttrs) myData.hosts;
extraConfig = ''
Host git.jakstys.lt
HostName ${myData.hosts."fwminex.servers.jakst".jakstIP}
'';
}; };
}; };
} }

View File

@ -25,7 +25,7 @@
lib.mkIf cfg.enable { lib.mkIf cfg.enable {
programs.ssh.extraConfig = '' programs.ssh.extraConfig = ''
Host dl.jakstys.lt fra1-b.jakstys.lt Host dl.jakstys.lt fra1-b.jakstys.lt
ProxyCommand ${pkgs.spiped}/bin/spipe -t %h:8022 -k ${cfg.keyfile} ProxyCommand ${pkgs.spiped}/bin/spipe -t %h:8022 -k ${cfg.keyfile}
''; '';
} }
) )