From 8978453ef0492c833d42599c758d25f8ed5afde0 Mon Sep 17 00:00:00 2001 From: ene Date: Fri, 17 Mar 2023 17:42:23 +0100 Subject: Fix(system): Move services to system --- system/services/openssh/default.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 system/services/openssh/default.nix (limited to 'system/services/openssh') diff --git a/system/services/openssh/default.nix b/system/services/openssh/default.nix new file mode 100644 index 00000000..5ee48a0c --- /dev/null +++ b/system/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; + }; + }; +} -- cgit 1.4.1