nixconfig/modules/soju.nix
2025-08-01 02:36:18 -07:00

18 lines
183 B
Nix

{
config,
lib,
pkgs,
...
}:
{
config = {
services.soju = {
enable = true;
hostName = "oracle";
listen = [ "irc+insecure://0.0.0.0" ];
};
};
}