mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 17:31:34 +01:00
Ignore installer ssh host keys
This commit is contained in:
parent
d26cf71ee9
commit
668852b804
1 changed files with 4 additions and 1 deletions
|
|
@ -7,7 +7,10 @@
|
|||
config = lib.mkIf config.myConfig.tailscale.enable {
|
||||
programs.ssh = {
|
||||
enable = true;
|
||||
matchBlocks.installer.extraOptions.UserKnownHostsFile = "/dev/null";
|
||||
matchBlocks.installer.extraOptions = {
|
||||
UserKnownHostsFile = "/dev/null";
|
||||
StrictHostKeyChecking = "no";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue