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

9 lines
211 B
Nix
Raw Normal View History

{ 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
'';
}