Update to Chuckya from Mastodon

This commit is contained in:
Bun 2025-07-22 14:19:45 -04:00
parent 8b37cd3d2e
commit f9a6faa630
4 changed files with 91 additions and 3 deletions

View file

@ -0,0 +1,14 @@
{ ... }:
{
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!"
'';
};
}

View file

@ -1,7 +1,10 @@
{ config, lib, pkgs, ... }:
{ config, lib, pkgs, chuckya, ... }:
{
config = lib.mkIf config.services.mastodon.enable {
nixpkgs.overlays = [ chuckya.overlays.default ];
services.mastodon = {
package = pkgs.chuckya;
localDomain = "social.${config.vars.primeDomain}";
streamingProcesses = 4;
configureNginx = true;