This commit is contained in:
Lennart J. Kurzweg (Nx2)
2024-05-05 12:32:57 +02:00
parent 66ef004344
commit 428c531415
66 changed files with 42 additions and 12 deletions

12
system-modules/sshd.nix Normal file
View File

@@ -0,0 +1,12 @@
{ config, pkgs, lib, secrets, ... }:
{
services.openssh = {
enable = true;
ports = secrets.nx2site.ssh.ports;
settings = {
PasswordAuthentication = false;
};
};
}