From f66af67fcc5f9cdecf960c8669f7adb12188ca74 Mon Sep 17 00:00:00 2001
From: hodasemi <michaelh.95@t-online.de>
Date: Tue, 20 May 2025 14:06:05 +0200
Subject: [PATCH] Disable endlessh

---
 shared/ssh.nix | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/shared/ssh.nix b/shared/ssh.nix
index 489c36a..558bf69 100644
--- a/shared/ssh.nix
+++ b/shared/ssh.nix
@@ -1,17 +1,17 @@
 { config, lib, pkgs, modulesPath, ... }:
 {
     services = {
-        endlessh = {
-            enable = true;
-            port = 22;
-        };
+        # endlessh = {
+        #     enable = true;
+        #     port = 22;
+        # };
 
         openssh = {
             enable = true;
             ports = [ 22 23 ];
-            settings = {
-                AllowUsers = [ "dev" ];
-            };
+            # settings = {
+            #     AllowUsers = [ "dev" ];
+            # };
         };
     };
 }
\ No newline at end of file