diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2025-10-15 10:41:02 -0400 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-10-15 10:41:02 -0400 |
commit | fff944ff0a09a8cf8cf2058310b10236242b1a34 (patch) | |
tree | cc25e87bd754b43227d29bf3caa87eee04c67e89 | |
parent | a333c097c87c8b450bcdeb8bbccbd254db958a72 (diff) |
global: remove strict host key checking
-rw-r--r-- | modules/core/global.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/core/global.nix b/modules/core/global.nix index 42a7dd6..43b680c 100644 --- a/modules/core/global.nix +++ b/modules/core/global.nix @@ -33,5 +33,9 @@ in { security.rtkit.enable = true; + programs.ssh.extraConfig = '' + StrictHostKeyChecking no + ''; + system.stateVersion = "23.11"; } |