mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-01-31 11:29:33 +01:00
21 lines
394 B
Nix
21 lines
394 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";
|
|
};
|
|
|
|
/**environment.etc = {
|
|
"ircd.conf" = {
|
|
text =''
|
|
'';
|
|
mode = "440";
|
|
};
|
|
};**/
|
|
}
|
|
|