forked from Fediversity/Fediversity
19 lines
338 B
Nix
19 lines
338 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
options =
|
|
{
|
|
fediversity.domain = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "fediversity.tld";
|
|
};
|
|
}
|
|
// import ../../../services/fediversity/sharedOptions.nix {
|
|
inherit config lib;
|
|
serviceName = "mastodon";
|
|
serviceDocName = "Mastodon";
|
|
};
|
|
}
|