From 29dd8a63491111ff977f32f27d300966354d6f8c Mon Sep 17 00:00:00 2001 From: GHOSCHT <31184695+GHOSCHT@users.noreply.github.com> Date: Sat, 2 Mar 2024 17:41:16 +0100 Subject: [PATCH] Enable ssh server --- hosts/franz/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hosts/franz/default.nix b/hosts/franz/default.nix index 60d8e2f..0f56fc2 100644 --- a/hosts/franz/default.nix +++ b/hosts/franz/default.nix @@ -41,6 +41,12 @@ dconf.enable = true; }; + services.openssh = { + enable = true; + settings.PasswordAuthentication = true; + settings.KbdInteractiveAuthentication = true; + }; + # https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion system.stateVersion = "23.11"; }