9 lines
127 B
Nix
9 lines
127 B
Nix
{config, pkgs, ...}:
|
|
{
|
|
services.openssh = {
|
|
enable = true;
|
|
passwordAuthentication = true;
|
|
ports = [2022];
|
|
};
|
|
}
|