]> git.immae.eu Git - perso/Immae/Config/Nix.git/blame - modules/private/default.nix
Move irc services to modules
[perso/Immae/Config/Nix.git] / modules / private / default.nix
CommitLineData
581c499c
IB
1{
2 # adatped from nixpkgs/nixos/modules/services/web-servers/apache-httpd/default.nix
6c97d2d7
IB
3 httpdInte = import ../websites/httpd-service-builder.nix { httpdName = "Inte"; withUsers = false; };
4 httpdProd = import ../websites/httpd-service-builder.nix { httpdName = "Prod"; withUsers = false; };
5 httpdTools = import ../websites/httpd-service-builder.nix { httpdName = "Tools"; withUsers = true; };
182ae57f
IB
6
7 databases = ./databases;
8 mariadb = ./databases/mariadb.nix;
9 openldap = ./databases/openldap;
10 postgresql = ./databases/postgresql.nix;
11 redis = ./databases/redis.nix;
ffb14c1c
IB
12
13 irc = ./irc.nix;
581c499c 14}