aboutsummaryrefslogtreecommitdiffstats
path: root/services
diff options
context:
space:
mode:
Diffstat (limited to 'services')
-rw-r--r--services/default.nix1
-rw-r--r--services/openssh/default.nix19
2 files changed, 20 insertions, 0 deletions
diff --git a/services/default.nix b/services/default.nix
index 0916bc03..36cf9763 100644
--- a/services/default.nix
+++ b/services/default.nix
@@ -4,5 +4,6 @@
./nix
./snapper
./dconf
+ ./openssh
];
}
diff --git a/services/openssh/default.nix b/services/openssh/default.nix
new file mode 100644
index 00000000..5ee48a0c
--- /dev/null
+++ b/services/openssh/default.nix
@@ -0,0 +1,19 @@
+{
+ config,
+ pkg,
+ ...
+}: {
+ services.openssh = {
+ enable = true;
+ hostKeys = [
+ {
+ path = "/srv/sshd/ssh_host_ed25519_key";
+ rounds = 1000;
+ type = "ed25519";
+ }
+ ];
+ settings = {
+ PasswordAuthentication = false;
+ };
+ };
+}