]> git.immae.eu Git - perso/Immae/Config/Nix.git/commitdiff
Move httpd service builder outside of private
authorIsmaël Bouya <ismael.bouya@normalesup.org>
Thu, 16 May 2019 22:11:09 +0000 (00:11 +0200)
committerIsmaël Bouya <ismael.bouya@normalesup.org>
Thu, 16 May 2019 22:11:09 +0000 (00:11 +0200)
modules/private/default.nix
modules/websites/httpd-service-builder.nix [moved from modules/private/httpd-service-builder.nix with 100% similarity]

index 6c71af3ec473aa2c2b51b025cfbc7f21650aedaa..394a85b6b6a056617fc53b5c297ed3a53bf25569 100644 (file)
@@ -1,6 +1,6 @@
 {
   # adatped from nixpkgs/nixos/modules/services/web-servers/apache-httpd/default.nix
 {
   # adatped from nixpkgs/nixos/modules/services/web-servers/apache-httpd/default.nix
-  httpdInte  = import ./httpd-service-builder.nix { httpdName = "Inte"; withUsers = false; };
-  httpdProd  = import ./httpd-service-builder.nix { httpdName = "Prod"; withUsers = false; };
-  httpdTools = import ./httpd-service-builder.nix { httpdName = "Tools"; withUsers = true; };
+  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; };
 }
 }