forked from Fediversity/Fediversity
14 lines
216 B
Nix
14 lines
216 B
Nix
{ config, lib, ... }:
|
|
|
|
{
|
|
options.fediversity.mastodon =
|
|
(import ../sharedOptions.nix {
|
|
inherit config lib;
|
|
serviceName = "mastodon";
|
|
serviceDocName = "Mastodon";
|
|
})
|
|
//
|
|
|
|
{
|
|
};
|
|
}
|