nix-config/hosts/sisyphe/features/services/irc-server.nix
2025-05-10 10:21:27 +02:00

21 lines
412 B
Nix

{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [ ircdHybrid ];
services.ircdHybrid = {
enable = true;
serverName = "irc.rougebordeaux.xyz";
description = "welcome to the silly kittens hut !! meow:3";
adminEmail = "admin@rougebordeaux.xyz";
};
/**
environment.etc = {
"ircd.conf" = {
text =''
'';
mode = "440";
};
};*
*/
}