{ lib, pkgs, ... }: { users.users.root.password = lib.mkDefault "nixturris"; environment.systemPackages = with pkgs; [ htop ]; services.openssh = { enable = true; settings = { PasswordAuthentication = true; PermitRootLogin = "yes"; }; }; }