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

14 lines
187 B
Nix

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