From 8cfd5f80afd333bf3596c8ba80f082c3ce4c97ea Mon Sep 17 00:00:00 2001 From: reidlab Date: Fri, 18 Aug 2023 18:06:38 -0700 Subject: [PATCH] update mosh/ssh --- hosts/server/configuration.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/hosts/server/configuration.nix b/hosts/server/configuration.nix index 11953ad..69a9e93 100755 --- a/hosts/server/configuration.nix +++ b/hosts/server/configuration.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs, luaOlder, buildLuarocksPackage, lua, fetchgit, ... }: +{ config, lib, pkgs, ... }: { imports = @@ -50,18 +50,20 @@ ]; }; + # Programs + # Programs - Mosh + programs.mosh.enable = true; + # Services # Services - Openssh services.openssh = { enable = true; settings = { PermitRootLogin = "no"; + PasswordAuthentication = true; }; }; - # Services - Mosh - programs.mosh.enable = true; - # Services - Nginx services.nginx = { package = pkgs.openresty;