* Get rid of the `experimental' flag.

svn path=/nixos/branches/modular-nixos/; revision=16010
This commit is contained in:
Eelco Dolstra 2009-06-19 14:27:43 +00:00
parent 9460a30851
commit d06556e274
2 changed files with 1 additions and 9 deletions

View File

@ -17,7 +17,6 @@
httpd = {
enable = true;
experimental = true;
adminAddr = "admin@example.org";
subservices = {

View File

@ -15,13 +15,6 @@ let
";
};
experimental = mkOption {
default = false;
description = "
Whether to use the new-style Apache configuration.
";
};
extraConfig = mkOption {
default = "";
description = "
@ -565,7 +558,7 @@ let
in
mkIf (config.services.httpd.enable && config.services.httpd.experimental) {
mkIf config.services.httpd.enable {
require = [
options
];