mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-08-08 21:04:38 -05:00
feat: fixed syntax error
This commit is contained in:
parent
480a6f4775
commit
f06237173f
1 changed files with 43 additions and 45 deletions
|
@ -22,11 +22,7 @@ let
|
||||||
keyword = instances.${name}.short;
|
keyword = instances.${name}.short;
|
||||||
}) (builtins.map (service: instances.${service}.name) services);
|
}) (builtins.map (service: instances.${service}.name) services);
|
||||||
|
|
||||||
bookmarkConfigs =
|
bookmarkConfigs = [
|
||||||
let
|
|
||||||
port = name: toString instances.${name}.ports.port0;
|
|
||||||
in
|
|
||||||
[
|
|
||||||
{
|
{
|
||||||
suffix = "(Remote)";
|
suffix = "(Remote)";
|
||||||
urlTemplate = name: "https://${instances.${name}.domains.url0}";
|
urlTemplate = name: "https://${instances.${name}.domains.url0}";
|
||||||
|
@ -46,7 +42,7 @@ let
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
suffix = "(Desktop)";
|
suffix = "(Desktop)";
|
||||||
urlTemplate = "http://${mars.ip.address0}:${port}";
|
urlTemplate = name: "http://${mars.ip.address0}:${builtins.toString instances.${name}.ports.port0}";
|
||||||
services = [
|
services = [
|
||||||
"ollama"
|
"ollama"
|
||||||
"syncthing"
|
"syncthing"
|
||||||
|
@ -54,14 +50,16 @@ let
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
suffix = "(Server)";
|
suffix = "(Server)";
|
||||||
urlTemplate = "http://${ceres.ip.address0}:${port}";
|
urlTemplate =
|
||||||
|
name: "http://${ceres.ip.address0}:${builtins.toString instances.${name}.ports.port0}";
|
||||||
services = [
|
services = [
|
||||||
"jellyfin"
|
"jellyfin"
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
suffix = "(Synology)";
|
suffix = "(Synology)";
|
||||||
urlTemplate = "http://${synology.ip.address0}:${port}";
|
urlTemplate =
|
||||||
|
name: "http://${synology.ip.address0}:${builtins.toString instances.${name}.ports.port0}";
|
||||||
services = [
|
services = [
|
||||||
"syncthing"
|
"syncthing"
|
||||||
];
|
];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue