From 1a8e0c9a1da5548296168a4d300751acc1e44d8e Mon Sep 17 00:00:00 2001 From: kB01 Date: Sat, 16 Nov 2024 04:29:44 +0100 Subject: [PATCH] Configured SSH Service --- systems/x86_64-linux/voloxo/default.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/systems/x86_64-linux/voloxo/default.nix b/systems/x86_64-linux/voloxo/default.nix index 76e4ed4..f068013 100644 --- a/systems/x86_64-linux/voloxo/default.nix +++ b/systems/x86_64-linux/voloxo/default.nix @@ -260,7 +260,16 @@ user = "kb"; dataDir = "/home/kb/sync"; configDir = "/home/kb/.config/syncthing"; - }; + }; + + # SSH + services.openssh = { + enable = true; + settings.PasswordAuthentication = false; + settings.KbdInteractiveAuthentication = false; + ports = [ 4125 ]; + openFirewall = true; + }; services.nix-serve = { enable = true;