11 lines
175 B
Nix
11 lines
175 B
Nix
{ lib, ... }:
|
|
{
|
|
options.system.socialserver.enable = lib.mkEnableOption "Enable social media like services";
|
|
|
|
imports = [
|
|
./mastodon
|
|
./matrix
|
|
./owncast
|
|
];
|
|
}
|