From 7352b79143e0b316df5a2b537a41e5279e243b7e Mon Sep 17 00:00:00 2001 From: Doloro1978 Date: Sat, 4 Oct 2025 05:55:46 +0100 Subject: [PATCH] qol(ssh): Made sure password auth is on --- nix/configuration.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/nix/configuration.nix b/nix/configuration.nix index 1fb2911..bf2ecfb 100644 --- a/nix/configuration.nix +++ b/nix/configuration.nix @@ -158,7 +158,12 @@ programs.fish.enable = true; # Enable touchpad support (enabled default in most desktopManager). # services.libinput.enable = true; - services.openssh.enable = true; + services.openssh = { + enable = true; + settings = { + PasswordAuthentication = true; + }; + }; users.users.doloro = { isNormalUser = true; shell = pkgs.fish;