mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-15 09:35:12 -05:00
10 lines
395 B
Nix
Executable file
10 lines
395 B
Nix
Executable file
{ 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}")
|
|
]
|