openssh: remove

tailscale ssh is pretty cool
This commit is contained in:
wo2wz 2025-10-27 11:38:02 -04:00
parent 58c11b16cf
commit 347b7d7656
5 changed files with 1 additions and 25 deletions

View file

@ -3,7 +3,6 @@
{
imports = [
./mumble.nix
./openssh.nix
./tailscale.nix
];
}

View file

@ -1,14 +0,0 @@
{ config, ... }:
{
services.openssh = {
enable = true;
ports = [ 8743 ];
settings = {
PasswordAuthentication = false;
KbdInteractiveAuthentication = false;
PermitRootLogin = "no";
AllowUsers = [ "wo2w" ];
};
};
}