aboutsummaryrefslogtreecommitdiff
path: root/modules/private/default.nix
blob: ba463748172a2193ecd8591734c72d05c10ce1b0 (plain) (blame)
1
2
3
4
5
6
{
  # adatped from nixpkgs/nixos/modules/services/web-servers/apache-httpd/default.nix
  httpdProd  = import ./httpd-service-builder.nix { httpdName = "Prod"; withUsers = false; };
  httpdInte  = import ./httpd-service-builder.nix { httpdName = "Inte"; withUsers = false; };
  httpdTools = import ./httpd-service-builder.nix { httpdName = "Tools"; withUsers = true; };
}