diff --git a/common/systemModules/sshd.nix b/common/systemModules/sshd.nix index efdc3a9..930c9ff 100644 --- a/common/systemModules/sshd.nix +++ b/common/systemModules/sshd.nix @@ -1,9 +1,14 @@ -{ ... }: +{ pkgs, ... }: { - services= { - openssh = { - enable = true; - authorizedKeysFiles = ["${./ssh.keys}"]; - }; + environment = { + systemPackages = with pkgs; [ + kitty.terminfo + ]; + }; + services = { + openssh = { + enable = true; + authorizedKeysFiles = [ "${./ssh.keys}" ]; }; + }; }