update mosh/ssh
This commit is contained in:
parent
bd197cf445
commit
8cfd5f80af
1 changed files with 6 additions and 4 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue