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 ./homelab-dashboard.nix
./nextcloud.nix ./nextcloud.nix
# ./photoprism.nix # ./photoprism.nix
./irc-server.nix
./grafana.nix ./grafana.nix
./forgejo.nix ./forgejo.nix
./synapse-matrix.nix ./synapse-matrix.nix

View file

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