nix-config/hosts/sisyphe/features/services/irc-server.nix
2025-01-19 20:13:58 +01:00

13 lines
288 B
Nix

{config, pkgs, ...}:
{
environment.systemPackages = with pkgs; [ ircdHybrid ];
services.ircdHybrid = {
enable = true;
serverName = "irc.hypervirtual.world";
description = "welcome to the silly kittens hut !! meow:3";
adminEmail = "admin@hypervirtual.world";
};
}