nixos-config/modules/system/services/server/socialserver/default.nix

11 lines
175 B
Nix
Raw Normal View History

{ lib, ... }:
2024-10-09 03:36:08 -04:00
{
2025-01-21 12:02:11 -05:00
options.system.socialserver.enable = lib.mkEnableOption "Enable social media like services";
imports = [
2024-12-29 10:06:13 -05:00
./mastodon
./matrix
./owncast
];
}