Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions build/pluto/prometheus/exporters/blackbox.nix
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ in
"https://common-styles.nixos.org"
"https://discourse.nixos.org"
"https://hydra.nixos.org"
"https://lasuite-meet.nixos.org"
"https://mobile.nixos.org"
"https://monitoring.nixos.org"
"https://nixos.org"
Expand Down
1 change: 1 addition & 0 deletions dns/nixos.org.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ D("nixos.org",
CNAME("nixpkgs-swh", "caliban"),
CNAME("survey", "caliban"),
CNAME("vault", "caliban"),
CNAME("lasuite-meet", "caliban"),
DMARC_BUILDER({
label: "caliban",
policy: "none"
Expand Down
1 change: 1 addition & 0 deletions non-critical-infra/hosts/caliban/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
../../modules/backup.nix
../../modules/element-web.nix
../../modules/limesurvey.nix
../../modules/lasuite-meet.nix
../../modules/matrix-synapse.nix
../../modules/owncast.nix
../../modules/vaultwarden.nix
Expand Down
40 changes: 40 additions & 0 deletions non-critical-infra/modules/lasuite-meet.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
config,
...
}:
{
sops.secrets = {
lasuite-livekit-keyfile = {
sopsFile = ../secrets/lasuite-livekit-keyfile.caliban;
format = "yml";
restartUnits = [ "lasuite.service" ];
};

};

services.lasuite-meet = {
enable = true;
enableNginx = true;
domain = "lasuite-meet.nixos.org";
Comment thread
Eveeifyeve marked this conversation as resolved.
livekit = {
enable = true;
keyFile = config.sops.secrets.lasuite-livekit-keyfile.path;
};

# Databases
postgresql.createLocally = true;
redis.createLocally = true;

settings = {
FRONTEND_IS_SILENT_LOGIN_ENABLED = true;
ALLOW_UNREGISTERED_ROOMS = true; # We want to allow for the creation of rooms unregistered in case a maintainer needs to meet with another maintainer or a team needs to create a meeting room.
RECORDING_ENABLE = true; # Useful for SC for recording mins during meetings.
};
};

# This is still requires as enableNginx doesn't enable the acme and forceSSL.
services.nginx.virtualHosts."lasuite-meet" = {
enableACME = true;
forceSSL = true;
};
}
Loading