dotfiles/nixos/home-manager/programs/ssh.nix

13 lines
217 B
Nix
Raw Normal View History

2023-08-13 17:00:41 +01:00
{
config,
pkgs,
...
}: {
2022-11-08 11:05:06 +00:00
programs.ssh.extraConfig = ''
Host vpsfree1 vpsfree1.cyplo.dev vpsfree1.raptor-carp.ts.net
HostName vpsfree1
Port 2222
2022-11-08 11:05:06 +00:00
StrictHostKeyChecking=accept-new
'';
}