From dd8334c9c024018cca7a75216d680779a606da8a Mon Sep 17 00:00:00 2001 From: DarkGuibrine Date: Sun, 17 May 2026 17:37:43 -0300 Subject: [PATCH] . --- hosts/Alfa/conf/GM/configs/self-host.nix | 11 +++++------ hosts/darkgui-vps/config/self-host/self-host.nix | 2 +- 2 files changed, 6 insertions(+), 7 deletions(-) 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; }; };