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;