nausicaa-wsl: add mattermost-enterprise

This commit is contained in:
Luke Granger-Brown 2025-03-24 23:08:33 +00:00
parent 29d916f1fb
commit d30dd4f880
2 changed files with 19 additions and 0 deletions
ops/nixos/nausicaa-wsl

View file

@ -10,6 +10,8 @@ in {
../lib/wsl.nix
../lib/graphical-client-wayland.nix
../lib/rexxar-distributed.nix
./mattermost.nix
];
virtualisation.podman = {

View file

@ -0,0 +1,17 @@
{ depot, pkgs, ... }:
{
services.mattermost = {
enable = true;
package = depot.nix.pkgs.mattermost-enterprise;
mutableConfig = true;
siteUrl = "http://localhost:8065";
host = "127.0.0.1";
port = 8065;
socket = {
enable = true;
export = true;
};
};
}