This commit is contained in:
2025-06-25 01:40:38 +02:00
parent 2504c9c94d
commit 12e1ba614d
2 changed files with 11 additions and 11 deletions

View File

@@ -57,7 +57,7 @@
#../../../profiles/http/services/resilio.nix
../../../profiles/http/services/roundcube.nix
#../../../profiles/http/services/snappymail.nix # WIP
../../../profiles/http/services/thelounge.nix
# ../../../profiles/http/services/thelounge.nix
../../../profiles/http/services/vaultwarden.nix
../../../profiles/http/services/webdav-zotero.nix
#../../../profiles/http/services/garage/gunktrunk.nix

View File

@@ -11,16 +11,16 @@ in
enable = true;
public = false;
port = 5876;
# theLoungePlugins.themes is view of nodePackages_latest.thelounge-theme-*
# theLoungePlugins.plugins is view of nodePackages_latest.thelounge-plugin-*
plugins = with pkgs.theLoungePlugins;
(with lib; attrValues (filterAttrs (name: _: name != "recurseForDerivations") themes))
++ [
#plugins.giphy
#plugins.shortcuts
plugins.closepms
];
extraConfig.theme = "One Dark";
#theLoungePlugins.themes was a view of nodePackages_latest.thelounge-theme-*
#theLoungePlugins.plugins was a view of nodePackages_latest.thelounge-plugin-*
# plugins = with pkgs.theLoungePlugins;
# (with lib; attrValues (filterAttrs (name: _: name != "recurseForDerivations") themes))
# ++ [
# #plugins.giphy
# #plugins.shortcuts
# plugins.closepms
# ];
# extraConfig.theme = "One Dark";
extraConfig.fileUpload.enable = true;
extraConfig.fileUpload.baseUrl = "${mkDomain "thelounge"}";
};