summary refs log tree commit diff stats
path: root/sys
diff options
context:
space:
mode:
Diffstat (limited to 'sys')
-rw-r--r--sys/services/default.nix1
-rw-r--r--sys/services/openssh/default.nix17
2 files changed, 18 insertions, 0 deletions
diff --git a/sys/services/default.nix b/sys/services/default.nix
index 31a958f..8e6fcbb 100644
--- a/sys/services/default.nix
+++ b/sys/services/default.nix
@@ -3,6 +3,7 @@
     ./fwupd
     ./greetd
     ./logind
+    ./openssh
     ./pcscd
     ./printing
     ./tlp
diff --git a/sys/services/openssh/default.nix b/sys/services/openssh/default.nix
new file mode 100644
index 0000000..7a96441
--- /dev/null
+++ b/sys/services/openssh/default.nix
@@ -0,0 +1,17 @@
+{...}: {
+  services.openssh = {
+    enable = true;
+    allowSFTP = false;
+    openFirewall = false;
+    settings = {
+      PermitRootLogin = "no";
+    };
+    hostKeys = [
+      {
+        path = "/srv/var/lib/sshd/ssh_host_ed25519_key";
+        rounds = 1000;
+        type = "ed25519";
+      }
+    ];
+  };
+}