mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-15 17:45:12 -05:00
11 lines
395 B
Nix
11 lines
395 B
Nix
![]() |
{ flake, matchHelper, ... }:
|
||
|
let
|
||
|
inherit (flake.config.services.instances) forgejo mastodon web;
|
||
|
in
|
||
|
[
|
||
|
(matchHelper ":dotfiles" "https://gitlab.com/upRootNutrition/dotfiles")
|
||
|
(matchHelper ":website" "https://${web.domains.url3}")
|
||
|
(matchHelper ":forgejo" "https://${forgejo.subdomain}.${web.domains.url3}")
|
||
|
(matchHelper ":mastodon" "https://${mastodon.subdomain}.${web.domains.url3}")
|
||
|
]
|