14 lines
246 B
Nix
14 lines
246 B
Nix
|
{ pkgs, ...}:
|
||
|
{
|
||
|
networking.firewall.allowedTCPPorts = [ 9000 ];
|
||
|
|
||
|
services.thelounge = {
|
||
|
enable = true;
|
||
|
public = false;
|
||
|
extraConfig = {
|
||
|
prefetch = true;
|
||
|
};
|
||
|
plugins = [ pkgs.theLoungePlugins.themes.solarized ];
|
||
|
};
|
||
|
}
|