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

17 lines
302 B
Nix

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