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;