mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-17 02:25:12 -05:00
15 lines
532 B
Nix
15 lines
532 B
Nix
![]() |
{flake, ...}: let
|
||
|
inherit (flake.config.services) instances;
|
||
|
in {
|
||
|
"${instances.jellyfin.label}" = {
|
||
|
definedAliases = ["@jf"];
|
||
|
icon = ./icons/jf.png;
|
||
|
urls = [{template = "https://${instances.jellyfin.subdomain}.${instances.web.domains.url0}/web/#/search.html?query={searchTerms}";}];
|
||
|
};
|
||
|
"${instances.peertube.label}" = {
|
||
|
definedAliases = ["@pt"];
|
||
|
icon = ./icons/pt.png;
|
||
|
urls = [{template = "https://${instances.peertube.subdomain}.${instances.web.domains.url1}/search?search={searchTerms}";}];
|
||
|
};
|
||
|
}
|