nix-config/features/server/services/irc-server.nix

11 lines
229 B
Nix
Raw Normal View History

2024-10-20 16:21:47 +02:00
{config, pkgs, ...}:
{
2024-12-08 10:11:58 +01:00
services.ircdHybrid = {
2024-10-20 16:21:47 +02:00
enable = true;
2024-12-08 10:11:58 +01:00
serverName = "irc.hypervirtual.world";
description = "welcome to the silly kittens hut !! meow:3";
adminEmail = "admin@hypervirtual.world";
};
2024-10-20 16:21:47 +02:00
}