11 lines
No EOL
136 B
Nix
11 lines
No EOL
136 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
services.openssh = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
PasswordAuthentication = true;
|
|
};
|
|
};
|
|
} |