13 lines
191 B
Nix
13 lines
191 B
Nix
{ config, pkgs, lib, secrets, ... }:
|
|
|
|
{
|
|
services.openssh = {
|
|
enable = true;
|
|
ports = secrets.nx2site.ssh.ports;
|
|
settings = {
|
|
PasswordAuthentication = false;
|
|
};
|
|
};
|
|
}
|
|
|