16 lines
240 B
Nix
16 lines
240 B
Nix
{ pkgs, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
kitty.terminfo
|
|
tmux.terminfo
|
|
];
|
|
|
|
services.openssh = {
|
|
enable = true;
|
|
settings = {
|
|
PasswordAuthentication = false;
|
|
PrintMotd = false;
|
|
};
|
|
};
|
|
}
|