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

@ -8,7 +8,7 @@
../../modules/nixos/programs/bash.nix
../../modules/nixos/programs/git.nix
../../modules/nixos/services/openssh.nix
../../modules/nixos/services/tailscale.nix
../../modules/nixos/services/homeserver
];
@ -67,12 +67,6 @@
allowedUDPPortRanges = [];
};
# for cloudflare browser ssh
services.openssh.settings.Macs = [
"hmac-sha2-512"
"hmac-sha2-256"
];
system.stateVersion = "25.05";
}

View file

@ -9,8 +9,6 @@
../../modules/nixos/programs/bash.nix
../../modules/nixos/programs/git.nix
../../modules/nixos/services/openssh.nix
../../modules/nixos/system/headless.nix
../../modules/nixos/system/minimal.nix
];

View file

@ -11,7 +11,6 @@
../../modules/nixos/programs/desktop/niri/niri/window-rules/single-monitor.nix
../../modules/nixos/programs/desktop/niri/niri/workspaces/single-monitor.nix
../../modules/nixos/services/openssh.nix
../../modules/nixos/services/tailscale.nix
../../modules/nixos/system/colors.nix

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" ];
};
};
}