nausicaa-wsl: add mattermost-enterprise
This commit is contained in:
parent
29d916f1fb
commit
d30dd4f880
2 changed files with 19 additions and 0 deletions
ops/nixos/nausicaa-wsl
|
@ -10,6 +10,8 @@ in {
|
|||
../lib/wsl.nix
|
||||
../lib/graphical-client-wayland.nix
|
||||
../lib/rexxar-distributed.nix
|
||||
|
||||
./mattermost.nix
|
||||
];
|
||||
|
||||
virtualisation.podman = {
|
||||
|
|
17
ops/nixos/nausicaa-wsl/mattermost.nix
Normal file
17
ops/nixos/nausicaa-wsl/mattermost.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue