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

10 lines
108 B
Nix
Raw Normal View History

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