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

15 lines
290 B
Nix
Raw Normal View History

2023-04-12 12:47:22 +00:00
{ pkgs, ...}:
{
networking.firewall.allowedTCPPorts = [ 9000 ];
services.thelounge = {
enable = true;
public = false;
extraConfig = {
prefetch = true;
messageStorage = [ "sqlite" "text" ];
};
plugins = [ pkgs.theLoungePlugins.themes.solarized ];
};
}