summaryrefslogtreecommitdiff
path: root/nixos/features/server/core/ssh.nix
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2025-09-02 21:21:46 -0400
committertriethyl <triethylammonium@pm.me>2025-09-02 21:21:46 -0400
commitefb1cda6d789e81cce0fafd753fb4d96eed6f9b7 (patch)
treeca816fc9817e8c94d2c247ebb03357c867298621 /nixos/features/server/core/ssh.nix
parenta6f9533790b9bfb73f1e531fcef6303642e38983 (diff)
homelab: working on homelab
Diffstat (limited to 'nixos/features/server/core/ssh.nix')
-rw-r--r--nixos/features/server/core/ssh.nix15
1 files changed, 0 insertions, 15 deletions
diff --git a/nixos/features/server/core/ssh.nix b/nixos/features/server/core/ssh.nix
deleted file mode 100644
index 16fec48..0000000
--- a/nixos/features/server/core/ssh.nix
+++ /dev/null
@@ -1,15 +0,0 @@
-{ config, lib, ... }: let
- cfg = config.features.server.ssh;
-in {
- options.features.server.ssh.enable = lib.mkEnableOption "sshd";
- config = lib.mkIf cfg.enable {
- services.openssh = {
- enable = true;
- ports = [ 2200 ];
- settings = {
- PermitRootLogin = "no";
- PasswordAuthentication = false;
- };
- };
- };
-}