mirror of
https://github.com/Death916/nixconfig.git
synced 2026-04-10 02:54:39 -07:00
21 lines
284 B
Nix
21 lines
284 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
config = {
|
|
services.soju = {
|
|
|
|
enable = true;
|
|
hostName = "orac";
|
|
listen = [
|
|
"irc+insecure://100.72.187.12:6667"
|
|
"irc+insecure://100.72.187.12:6697"
|
|
];
|
|
enableMessageLogging = true;
|
|
};
|
|
};
|
|
}
|