15 lines
284 B
Nix
15 lines
284 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
services.openssh = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
PasswordAuthentication = false;
|
|
KbdInteractiveAuthentication = false;
|
|
PermitRootLogin = "prohibit-password";
|
|
};
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [ wezterm.terminfo ];
|
|
}
|