nixos-config/modules/system/services/server/irc/default.nix

14 lines
271 B
Nix

{ ... }:
{
services.ngircd = {
enable = true;
config = ''
[Global]
Name = irc.nixfox.ca
AdminInfo1 = NixFox IRC
AdminInfo2 = Canada
AdminEMail = contact@nixfox.ca
MotdPhrase = "Welcome to the NixFox chatroom!"
'';
};
}