From 31c316d19cd974bb81a5d6de62142ff24db1c78e Mon Sep 17 00:00:00 2001 From: triethyl Date: Tue, 2 Sep 2025 10:48:21 -0400 Subject: reorganized directory structure --- features/system/server/core/ssh.nix | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 features/system/server/core/ssh.nix (limited to 'features/system/server/core/ssh.nix') diff --git a/features/system/server/core/ssh.nix b/features/system/server/core/ssh.nix deleted file mode 100644 index 16fec48..0000000 --- a/features/system/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; - }; - }; - }; -} -- cgit v1.2.3