14 lines
187 B
Nix
14 lines
187 B
Nix
{ lib, ... }:
|
|
{
|
|
options.system.socialserver.enable = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = false;
|
|
};
|
|
|
|
imports = [
|
|
./mastodon
|
|
./matrix
|
|
./owncast
|
|
];
|
|
}
|