blob: b821488dd35ea8ce4e88ebe2d846c03d07f9cb8c (
plain) (
blame)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
let
set = {
# adatped from nixpkgs/nixos/modules/services/web-servers/apache-httpd/default.nix
httpdInte = import ../websites/httpd-service-builder.nix { httpdName = "Inte"; withUsers = false; };
httpdProd = import ../websites/httpd-service-builder.nix { httpdName = "Prod"; withUsers = false; };
httpdTools = import ../websites/httpd-service-builder.nix { httpdName = "Tools"; withUsers = true; };
databases = ./databases;
mariadb = ./databases/mariadb.nix;
openldap = ./databases/openldap;
postgresql = ./databases/postgresql.nix;
redis = ./databases/redis.nix;
postgresqlReplication = ./databases/postgresql_replication.nix;
mariadbReplication = ./databases/mariadb_replication.nix;
redisReplication = ./databases/redis_replication.nix;
openldapReplication = ./databases/openldap_replication.nix;
websites = ./websites;
# Personal websites
capitainesLandingPages = ./websites/capitaines/landing_pages.nix;
chloeInte = ./websites/chloe/integration.nix;
chloeProd = ./websites/chloe/production.nix;
cipcaSympa = ./websites/cip-ca/sympa.nix;
connexionswingInte = ./websites/connexionswing/integration.nix;
connexionswingProd = ./websites/connexionswing/production.nix;
deniseDenisejeromeProd = ./websites/denise/denisejerome.nix;
deniseEvariste = ./websites/denise/evariste.nix;
deniseOMS = ./websites/denise/oms.nix;
deniseAventuriers = ./websites/denise/aventuriers.nix;
deniseProduction = ./websites/denise/production.nix;
emiliaMoodle = ./websites/emilia/moodle.nix;
florianApp = ./websites/florian/app.nix;
florianInte = ./websites/florian/integration.nix;
florianProd = ./websites/florian/production.nix;
immaeProd = ./websites/immae/production.nix;
immaeRelease = ./websites/immae/release.nix;
immaeTemp = ./websites/immae/temp.nix;
isabelleAtenInte = ./websites/isabelle/aten_integration.nix;
isabelleAtenProd = ./websites/isabelle/aten_production.nix;
isabelleIridologie = ./websites/isabelle/iridologie.nix;
jeromeNaturaloutil = ./websites/jerome/naturaloutil.nix;
leilaProd = ./websites/leila/production.nix;
ludivineInte = ./websites/ludivine/integration.nix;
ludivineProd = ./websites/ludivine/production.nix;
nassimeProd = ./websites/nassime/production.nix;
nathanaelVillon = ./websites/nathanael/villon.nix;
papaMaisonBbc = ./websites/papa/maison_bbc.nix;
papaSurveillance = ./websites/papa/surveillance.nix;
patrickFodellaProd = ./websites/patrick_fodella/production.nix;
piedsjalouxInte = ./websites/piedsjaloux/integration.nix;
piedsjalouxProd = ./websites/piedsjaloux/production.nix;
richieProd = ./websites/richie/production.nix;
sydenPeertube = ./websites/syden/peertube.nix;
teliotortayProd = ./websites/telio_tortay/production.nix;
# Tools
assetsTools = ./websites/tools/assets;
cloudTool = ./websites/tools/cloud;
commentoTool = ./websites/tools/commento;
davTool = ./websites/tools/dav;
vpnTool = ./websites/tools/vpn;
dbTool = ./websites/tools/db;
diasporaTool = ./websites/tools/diaspora;
etherTool = ./websites/tools/ether;
gitTool = ./websites/tools/git;
imTool = ./websites/tools/im;
mastodonTool = ./websites/tools/mastodon;
mgoblinTool = ./websites/tools/mgoblin;
peertubeTool = ./websites/tools/peertube;
performanceTool = ./websites/tools/performance;
toolsTool = ./websites/tools/tools;
mailTool = ./websites/tools/mail;
# Games
codenamesGame = ./websites/tools/games/codenames;
mail = ./mail;
buildbot = ./buildbot;
certificates = ./certificates.nix;
gitolite = ./gitolite;
irc = ./irc.nix;
pub = ./pub;
tasks = ./tasks;
dns = ./dns.nix;
ftp = ./ftp.nix;
mpd = ./mpd.nix;
ejabberd = ./ejabberd;
ssh = ./ssh;
monitoring = ./monitoring;
status = ./monitoring/status.nix;
status_engine = ./monitoring/status_engine.nix;
vpn = ./vpn;
environment = ./environment.nix;
system = ./system.nix;
loginctl-linger = ./loginctl-linger.nix;
};
in
builtins.listToAttrs (map (attr: { name = "priv${attr}"; value = set.${attr}; }) (builtins.attrNames set))
|