update mosh/ssh

This commit is contained in:
Reid 2023-08-18 18:06:38 -07:00
parent bd197cf445
commit 8cfd5f80af

View file

@ -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;