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= {
openssh = {
enable = true;
authorizedKeysFiles = ["${./ssh.keys}"];
};
environment = {
systemPackages = with pkgs; [
kitty.terminfo
];
};
services = {
openssh = {
enable = true;
authorizedKeysFiles = [ "${./ssh.keys}" ];
};
};
}