mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-08-08 06:30:18 +02:00
21 lines
412 B
Nix
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";
|
|
};
|
|
};*
|
|
*/
|
|
}
|