9 lines
108 B
Nix
9 lines
108 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
programs.ssh.extraConfig = ''
|
|
StrictHostKeyChecking=accept-new
|
|
'';
|
|
}
|