nixos/modules/openssh.nix

11 lines
No EOL
136 B
Nix

{ config, pkgs, ... }:
{
services.openssh = {
enable = true;
settings = {
PasswordAuthentication = true;
};
};
}