blob: d096ff9eb4c9171e87fc4171091c2d655165781f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
{ settings }:
let
ports = settings.network.ports;
host = settings.network.host;
in [
{
title = "Jellyfin";
key = "j";
url = "http://jellyfin.local";
altUrl = "http://${host}:${toString ports.jellyfin}";
color = "#AA5CC3";
}
{
title = "Immich";
key = "i";
url = "http://photos.local";
altUrl = "http://${host}:${toString ports.immich}";
color = "#fa2921";
}
{
title = "Jellyseer";
key = "l";
url = "http://jellyseerr.local";
altUrl = "http://${host}:${toString ports.jellyseerr}";
color = "#5345e6";
}
{
title = "Radarr";
key = "r";
url = "http://radarr.local";
altUrl = "http://${host}:${toString ports.radarr}";
color = "#fcbd00";
}
{
title = "Sonarr";
key = "s";
url = "http://sonarr.local";
altUrl = "http://${host}:${toString ports.sonarr}";
color = "#4c82cf";
}
{
title = "Prowlarr";
key = "p";
url = "http://prowlarr.local";
altUrl = "http://${host}:${toString ports.prowlarr}";
color = "#ff9a7e";
}
{
title = "Syncthing";
key = "y";
url = "http://syncthing.local";
altUrl = "http://${host}:${toString ports.syncthing}";
color = "#0891d1";
}
{
title = "Ntfy-sh";
key = "n";
url = "http://ntfy.local";
altUrl = "http://${host}:${toString ports.ntfy}";
color = "#2dc9b5";
}
# {
# title = "Grafana";
# key = "g";
# url = "http://grafana.local";
# altUrl = "http://${host}:${toString ports.grafana}";
# color = "#f05a28";
# }
# {
# title = "Send";
# key = "f";
# url = "http://send.local";
# altUrl = "http://${host}:${toString ports.send}";
# color = "#0a84ff";
# }
{
title = "News RSS";
key = "w";
url = "http://news.local";
altUrl = "http://${host}:${toString ports.yarr}";
color = "#475569";
}
{
title = "Lazy Librarian";
key = "b";
url = "http://librarian.local";
altUrl = "http://${host}:${toString ports.lazylibrarian}";
color = "#55a4db";
}
]
|