diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2019-05-17 00:11:09 +0200 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2019-05-17 00:11:09 +0200 |
commit | 6c97d2d715620a1cdc3b8a785174590ec0dafb98 (patch) | |
tree | 40b987869131f143f5577b7432f4167c711d8c6e | |
parent | 7df420c27ebe7daaa4fd099c457ce9a9075b840e (diff) | |
download | Nix-6c97d2d715620a1cdc3b8a785174590ec0dafb98.tar.gz Nix-6c97d2d715620a1cdc3b8a785174590ec0dafb98.tar.zst Nix-6c97d2d715620a1cdc3b8a785174590ec0dafb98.zip |
Move httpd service builder outside of private
-rw-r--r-- | modules/private/default.nix | 6 | ||||
-rw-r--r-- | modules/websites/httpd-service-builder.nix (renamed from modules/private/httpd-service-builder.nix) | 0 |
2 files changed, 3 insertions, 3 deletions
diff --git a/modules/private/default.nix b/modules/private/default.nix index 6c71af3..394a85b 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 | httpdInte = import ./httpd-service-builder.nix { httpdName = "Inte"; withUsers = false; }; | 3 | httpdInte = import ../websites/httpd-service-builder.nix { httpdName = "Inte"; withUsers = false; }; |
4 | httpdProd = import ./httpd-service-builder.nix { httpdName = "Prod"; withUsers = false; }; | 4 | httpdProd = import ../websites/httpd-service-builder.nix { httpdName = "Prod"; withUsers = false; }; |
5 | httpdTools = import ./httpd-service-builder.nix { httpdName = "Tools"; withUsers = true; }; | 5 | httpdTools = import ../websites/httpd-service-builder.nix { httpdName = "Tools"; withUsers = true; }; |
6 | } | 6 | } |
diff --git a/modules/private/httpd-service-builder.nix b/modules/websites/httpd-service-builder.nix index d049202..d049202 100644 --- a/modules/private/httpd-service-builder.nix +++ b/modules/websites/httpd-service-builder.nix | |||