blob: 479de4aff01c8864edc00345b78463a818cf152f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{ ... }:
{
imports = [ ../../services/mail2.nix ];
wilkuu.services.test_endpoint = {
enable = true;
doACME = false;
port = 9999;
domain = "test.aperture.local";
};
wilkuu.services.mail = {
enable = true;
doACME = false;
defaultDomain = "mail.aperture.local";
domains = [ "mail.aperture.local" ];
wellKnownDomains = [ "aperture.local" ];
startupMode = "bootstrap";
};
lldap = {
enable = false;
environmentFile = null;
settings = {
};
};
}
|