10 lines
111 B
Nix
10 lines
111 B
Nix
|
|
{ config, pkgs, ... }:
|
||
|
|
|
||
|
|
{
|
||
|
|
services.openssh = {
|
||
|
|
enable = true;
|
||
|
|
passwordAuthentication = true;
|
||
|
|
};
|
||
|
|
}
|
||
|
|
|