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

14 lines
246 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;
};
plugins = [ pkgs.theLoungePlugins.themes.solarized ];
2023-04-12 12:47:22 +00:00
};
}