2025-01-10 14:12:33 -05:00
|
|
|
{ lib, ... }:
|
2024-10-09 03:36:08 -04:00
|
|
|
{
|
2025-01-17 17:06:28 -05:00
|
|
|
options.system.socialserver.enable = lib.mkOption {
|
2025-01-10 14:12:33 -05:00
|
|
|
type = lib.types.bool;
|
|
|
|
default = false;
|
|
|
|
};
|
|
|
|
|
2024-10-07 11:42:34 -04:00
|
|
|
imports = [
|
2024-12-29 10:06:13 -05:00
|
|
|
./mastodon
|
|
|
|
./matrix
|
2024-10-07 11:42:34 -04:00
|
|
|
./owncast
|
|
|
|
];
|
|
|
|
}
|