infrastructure/hosts/seedbox/kitty/services/thelounge.nix

15 lines
290 B
Nix

{ pkgs, ...}:
{
networking.firewall.allowedTCPPorts = [ 9000 ];
services.thelounge = {
enable = true;
public = false;
extraConfig = {
prefetch = true;
messageStorage = [ "sqlite" "text" ];
};
plugins = [ pkgs.theLoungePlugins.themes.solarized ];
};
}