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

8 lines
104 B
Nix
Raw Normal View History

2022-11-08 11:05:06 +00:00
{ config, pkgs, ... }: {
programs.ssh.extraConfig = ''
StrictHostKeyChecking=accept-new
'';
}