diff --git a/modules/core/sovran-hub.nix b/modules/core/sovran-hub.nix index 1e3ddd4..e9b23e3 100644 --- a/modules/core/sovran-hub.nix +++ b/modules/core/sovran-hub.nix @@ -8,6 +8,11 @@ let [ { name = "Caddy"; unit = "caddy.service"; type = "system"; icon = "caddy"; enabled = true; category = "infrastructure"; credentials = []; } { name = "Tor"; unit = "tor.service"; type = "system"; icon = "tor"; enabled = true; category = "infrastructure"; credentials = []; } + { name = "System Passwords"; unit = "root-password-setup.service"; type = "system"; icon = "system"; enabled = true; category = "infrastructure"; credentials = [ + { label = "Free Account"; value = "Username: free / Password: free"; } + { label = "Root Password"; file = "/var/lib/secrets/root-password"; } + { label = "SSH Local Access"; value = "ssh root@localhost / Passphrase: gosovransystems"; } + ]; } ] # ── Bitcoin Base (node implementations) ──────────────────── ++ [ @@ -77,7 +82,7 @@ let services = monitoredServices; }); - # ── Update wrapper script ─────────────────────────────────────�� + # ── Update wrapper script ────────────────────────────────────── update-script = pkgs.writeShellScript "sovran-hub-update.sh" '' set -uo pipefail export PATH="${lib.makeBinPath [ pkgs.nix pkgs.nixos-rebuild pkgs.git pkgs.flatpak pkgs.coreutils ]}:$PATH"