nichts/nyx/modules/options/system/services/social.nix

19 lines
357 B
Nix
Raw Normal View History

2024-04-09 23:11:33 +02:00
{lib, ...}: let
inherit (lib) mkModule;
in {
options.modules.system.services = {
# self-hosted/decentralized social networks
social = {
mastodon = mkModule {
name = "Mastodon";
type = "social";
};
matrix = mkModule {
name = "Matrix";
type = "social";
port = 8008;
};
};
};
}