diff options
author | sinanmohd <sinan@sinanmohd.com> | 2025-09-06 11:27:03 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2025-09-06 11:27:03 +0530 |
commit | 28e165bf68edd9b9f558ad0d960c26ae878f0ace (patch) | |
tree | 818d33a91031cee3952f9da4540591f9fb4742b4 /home | |
parent | 6bc9fe42a2cadc771c178f289207b914e8ec37a1 (diff) |
chore(home/ssh): warnings
Diffstat (limited to 'home')
-rw-r--r-- | home/common/modules/ssh.nix | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/home/common/modules/ssh.nix b/home/common/modules/ssh.nix index 31df169..f6bc36c 100644 --- a/home/common/modules/ssh.nix +++ b/home/common/modules/ssh.nix @@ -5,11 +5,11 @@ in { programs.ssh = { enable = true; - compression = true; + enableDefaultConfig = false; - extraConfig = '' - Host kay - HostName ${domain} - ''; + matchBlocks = { + "*".compression = true; + "kay".hostname = domain; + }; }; } |