mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-02-23 16:49:01 -05:00
add kitty terminfo to sshd
This commit is contained in:
parent
f472a94e5d
commit
fa32d86e0a
1 changed files with 11 additions and 6 deletions
|
@ -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}" ];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue