29 lines
552 B
Nix
29 lines
552 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
../modules/indico.nix
|
|
];
|
|
|
|
networking.firewall.allowedTCPPorts = [ 80 443 ];
|
|
|
|
services.indico = {
|
|
enable = true;
|
|
nginx.domain = "events.federez.net";
|
|
email = {
|
|
noReply = "indico@federez.net";
|
|
support = "admin@federez.net";
|
|
publicSupport = "bureau@federez.net";
|
|
smtp = {
|
|
host = "dodecagon.federez.net";
|
|
login = "indico";
|
|
password = "xxx";
|
|
};
|
|
};
|
|
secretKey = "lQsViT9292sIkObP9ptQADGJ16bk58n7"; # FIXME: dev only
|
|
};
|
|
}
|