added irc server

This commit is contained in:
Harry 2024-12-08 10:11:58 +01:00
parent 7455e9981f
commit f6f7636189
2 changed files with 6 additions and 6 deletions

View file

@ -5,6 +5,7 @@
./homelab-dashboard.nix
./nextcloud.nix
# ./photoprism.nix
./irc-server.nix
./grafana.nix
./forgejo.nix
./synapse-matrix.nix

View file

@ -1,11 +1,10 @@
{config, pkgs, ...}:
{
services.ircdHybrid =
{
services.ircdHybrid = {
enable = true;
serverName = "irc.hypervirtual.world";
description = "welcome to the silly kittens hut !! meow:3";
};
serverName = "irc.hypervirtual.world";
description = "welcome to the silly kittens hut !! meow:3";
adminEmail = "admin@hypervirtual.world";
};
}