aboutsummaryrefslogtreecommitdiff
path: root/modules/private/default.nix
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2019-05-14 08:47:00 +0200
committerIsmaël Bouya <ismael.bouya@normalesup.org>2019-05-14 09:41:18 +0200
commitdaf64e3f7de98e4267823d14fa34891b27b5f657 (patch)
tree82a3bc59b1bff35b7cd2fc4aeb02e0485e5b37a0 /modules/private/default.nix
parent017cb76f3355369a57cee7e851e013fbe7b265b7 (diff)
downloadNix-daf64e3f7de98e4267823d14fa34891b27b5f657.tar.gz
Nix-daf64e3f7de98e4267823d14fa34891b27b5f657.tar.zst
Nix-daf64e3f7de98e4267823d14fa34891b27b5f657.zip
Start moving websites configuration to modules
Diffstat (limited to 'modules/private/default.nix')
-rw-r--r--modules/private/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/private/default.nix b/modules/private/default.nix
index ba46374..6c71af3 100644
--- a/modules/private/default.nix
+++ b/modules/private/default.nix
@@ -1,6 +1,6 @@
1{ 1{
2 # adatped from nixpkgs/nixos/modules/services/web-servers/apache-httpd/default.nix 2 # adatped from nixpkgs/nixos/modules/services/web-servers/apache-httpd/default.nix
3 httpdProd = import ./httpd-service-builder.nix { httpdName = "Prod"; withUsers = false; };
4 httpdInte = import ./httpd-service-builder.nix { httpdName = "Inte"; withUsers = false; }; 3 httpdInte = import ./httpd-service-builder.nix { httpdName = "Inte"; withUsers = false; };
4 httpdProd = import ./httpd-service-builder.nix { httpdName = "Prod"; withUsers = false; };
5 httpdTools = import ./httpd-service-builder.nix { httpdName = "Tools"; withUsers = true; }; 5 httpdTools = import ./httpd-service-builder.nix { httpdName = "Tools"; withUsers = true; };
6} 6}