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 =
|
imports =
|
||||||
|
@ -50,18 +50,20 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Programs
|
||||||
|
# Programs - Mosh
|
||||||
|
programs.mosh.enable = true;
|
||||||
|
|
||||||
# Services
|
# Services
|
||||||
# Services - Openssh
|
# Services - Openssh
|
||||||
services.openssh = {
|
services.openssh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
PermitRootLogin = "no";
|
PermitRootLogin = "no";
|
||||||
|
PasswordAuthentication = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# Services - Mosh
|
|
||||||
programs.mosh.enable = true;
|
|
||||||
|
|
||||||
# Services - Nginx
|
# Services - Nginx
|
||||||
services.nginx = {
|
services.nginx = {
|
||||||
package = pkgs.openresty;
|
package = pkgs.openresty;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue