From fa32d86e0ada142570a43ac0ffbf4b2dea7fd3f2 Mon Sep 17 00:00:00 2001 From: sadan <117494111+sadan4@users.noreply.github.com> Date: Fri, 21 Feb 2025 23:33:30 -0500 Subject: [PATCH] add kitty terminfo to sshd --- common/systemModules/sshd.nix | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) 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}" ]; }; + }; }