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= {
|
environment = {
|
||||||
openssh = {
|
systemPackages = with pkgs; [
|
||||||
enable = true;
|
kitty.terminfo
|
||||||
authorizedKeysFiles = ["${./ssh.keys}"];
|
];
|
||||||
};
|
};
|
||||||
|
services = {
|
||||||
|
openssh = {
|
||||||
|
enable = true;
|
||||||
|
authorizedKeysFiles = [ "${./ssh.keys}" ];
|
||||||
};
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue