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

14 lines
182 B
Nix

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