summaryrefslogtreecommitdiffstats
path: root/system/services/opensshd
diff options
context:
space:
mode:
Diffstat (limited to 'system/services/opensshd')
-rw-r--r--system/services/opensshd/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/system/services/opensshd/default.nix b/system/services/opensshd/default.nix
new file mode 100644
index 0000000..cb9f2ba
--- /dev/null
+++ b/system/services/opensshd/default.nix
@@ -0,0 +1,18 @@
+{
+ config,
+ pkg,
+ ...
+}: {
+ services.openssh = {
+ enable = true;
+ passwordAuthentication = false;
+ hostKeys = [
+ {
+ comment = "key comment";
+ path = "/srv/sshd/ssh_host_ed25519_key";
+ rounds = 1000;
+ type = "ed25519";
+ }
+ ];
+ };
+}