Fediversity/services/fediversity/mastodon/options.nix

15 lines
216 B
Nix
Raw Normal View History

2025-02-14 18:37:48 +01:00
{ config, lib, ... }:
{
2025-02-14 19:21:31 +01:00
options.fediversity.mastodon =
(import ../sharedOptions.nix {
inherit config lib;
serviceName = "mastodon";
serviceDocName = "Mastodon";
})
//
{
2025-02-14 18:37:48 +01:00
};
}