diff options
| author | Akshay Nair <phenax5@gmail.com> | 2025-06-11 13:57:24 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2025-06-13 15:01:40 +0530 |
| commit | e6b171f9f1d975ffe34e7a34743b5e92e8593847 (patch) | |
| tree | 32714bba7679b5ece2ebcf9aeb795caeab13468e /modules/dashboard/default.nix | |
| parent | 2a73a5899124fa15c3962b9bd385ebd415a0ccf9 (diff) | |
| download | homeserver-nixos-config-e6b171f9f1d975ffe34e7a34743b5e92e8593847.tar.gz homeserver-nixos-config-e6b171f9f1d975ffe34e7a34743b5e92e8593847.zip | |
Add service router + nsd server
Diffstat (limited to 'modules/dashboard/default.nix')
| -rw-r--r-- | modules/dashboard/default.nix | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/modules/dashboard/default.nix b/modules/dashboard/default.nix index 54db0d9..9e434c2 100644 --- a/modules/dashboard/default.nix +++ b/modules/dashboard/default.nix @@ -9,32 +9,44 @@ in services.bacchus-dashboard = { enable = true; openFirewall = true; - title = "Dashboard"; + port = ports.dashboard; + title = "Bacchus Dashboard"; links = [ { title = "Jellyfin"; key = "j"; - url = "http://${settings.network.host}:${toString ports.jellyfin}"; + url = "http://jellyfin.local"; + altUrl = "http://${settings.network.host}:${toString ports.jellyfin}"; color = "#AA5CC3"; } { title = "Sonarr"; key = "s"; - url = "http://${settings.network.host}:${toString ports.sonarr}"; + url = "http://sonarr.local"; + altUrl = "http://${settings.network.host}:${toString ports.sonarr}"; color = "#4c82cf"; } { title = "Radarr"; key = "r"; - url = "http://${settings.network.host}:${toString ports.radarr}"; + url = "http://radarr.local"; + altUrl = "http://${settings.network.host}:${toString ports.radarr}"; color = "#fcbd00"; } { title = "Prowlarr"; key = "p"; - url = "http://${settings.network.host}:${toString ports.prowlarr}"; + url = "http://prowlarr.local"; + altUrl = "http://${settings.network.host}:${toString ports.prowlarr}"; color = "#ff9a7e"; } + { + title = "Syncthing"; + key = "y"; + url = "http://syncthing.local"; + altUrl = "http://${settings.network.host}:${toString ports.syncthing}"; + color = "#0891d1"; + } ]; }; } |
