mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-12-13 10:00:52 -06:00
10 lines
423 B
Nix
Executable file
10 lines
423 B
Nix
Executable file
{ flake, matchHelper, ... }:
|
|
let
|
|
inherit (flake.config.services) instances;
|
|
in
|
|
[
|
|
(matchHelper ":dotfiles" "https://gitlab.com/upRootNutrition/dotfiles")
|
|
(matchHelper ":website" "https://${instances.jellyfin.interfaces.interface0.domain}")
|
|
(matchHelper ":forgejo" "https://${instances.forgejo.interfaces.interface0.domain}")
|
|
(matchHelper ":mastodon" "https://${instances.mastodon.interfaces.interface0.domain}")
|
|
]
|