nixos/hosts/work/ssh.nix

20 lines
374 B
Nix
Raw Permalink Normal View History

2025-02-26 15:26:31 +01:00
{lib, ...}: {
fireproof.home-manager.programs.ssh.matchBlocks = {
"dev.ao" = {
proxyJump = lib.mkForce null;
};
"flex.ao" = {
proxyJump = lib.mkForce null;
};
"bastion.ao" = {
hostname = "192.168.2.6";
};
"clickhouse.ao" = {
proxyJump = "bastion.ao";
};
2025-04-22 13:46:04 +02:00
homelab = {
2025-02-26 15:26:31 +01:00
proxyJump = "bastion.ao";
};
};
2025-02-26 20:34:54 +01:00
}