add kitty terminfo to sshd

This commit is contained in:
sadan 2025-02-21 23:33:30 -05:00
parent f472a94e5d
commit fa32d86e0a
No known key found for this signature in database

View file

@ -1,9 +1,14 @@
{ ... }: { pkgs, ... }:
{ {
services= { environment = {
openssh = { systemPackages = with pkgs; [
enable = true; kitty.terminfo
authorizedKeysFiles = ["${./ssh.keys}"]; ];
}; };
services = {
openssh = {
enable = true;
authorizedKeysFiles = [ "${./ssh.keys}" ];
}; };
};
} }