This repository has been archived on 2024-07-10. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles-nix/nix/home/ssh/ssh.nix

24 lines
581 B
Nix

{ config, pkgs, ... }:
{
# ssh
programs.ssh = {
enable = true;
matchBlocks = {
# general
"*" = {
user = "simon";
identityFile = "${config.home.homeDirectory}/.ssh/talathiel";
serverAliveInterval = 60;
};
# siempie lab
"*.do.local" = { proxyJump = "siempie.com"; };
"*.hackerboys.internal" = { proxyJump = "siempie.com"; };
"*.siempie.internal" = { proxyJump = "siempie.com"; };
"*.siempie.local" = { proxyJump = "siempie.com"; };
};
};
}