aboutsummaryrefslogtreecommitdiff
path: root/modules/private/default.nix
blob: 20303150b2e8fae017234e5afcd2c37b313c7bb2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  # 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;

  irc = ./irc.nix;
}