diff --git a/hosts/Alfa/conf/GM/configs/self-host.nix b/hosts/Alfa/conf/GM/configs/self-host.nix index 1fc4a6d..158f7f9 100644 --- a/hosts/Alfa/conf/GM/configs/self-host.nix +++ b/hosts/Alfa/conf/GM/configs/self-host.nix @@ -14,7 +14,7 @@ services = { netbird.enable = true; - netbird.ui = true; + netbird.ui.enable = true; }; networking.nftables.enable = true; @@ -50,15 +50,14 @@ users.groups.docker.gid = 131; virtualisation.docker = { enable = true; - - #rootless = { - # enable = true; - # setSocketVariable = true; - #}; }; services.openssh = { enable = true; + settings = { + PermitRootLogin = "yes"; + PasswordAuthentication = false; + }; }; services.sunshine = { diff --git a/hosts/darkgui-vps/config/self-host/self-host.nix b/hosts/darkgui-vps/config/self-host/self-host.nix index 36bd885..d7ad14d 100644 --- a/hosts/darkgui-vps/config/self-host/self-host.nix +++ b/hosts/darkgui-vps/config/self-host/self-host.nix @@ -16,7 +16,7 @@ services.openssh = { enable = true; settings = { - PermitRootLogin = "no"; + PermitRootLogin = "yes"; PasswordAuthentication = false; }; };