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

21 lines
394 B
Nix
Raw Normal View History

2024-10-20 16:21:47 +02:00
{config, pkgs, ...}:
{
2025-01-19 20:13:58 +01:00
environment.systemPackages = with pkgs; [ ircdHybrid ];
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";
};
/**environment.etc = {
"ircd.conf" = {
text =''
'';
mode = "440";
};
};**/
2024-10-20 16:21:47 +02:00
}