svn path=/nixos/trunk/; revision=22609

This commit is contained in:
Eelco Dolstra 2010-07-15 13:28:36 +00:00
parent f3e1607758
commit 575950aa5d

View File

@ -1,17 +0,0 @@
rec {
machine =
{ config, pkgs, ... }:
{
services.httpd.enable = true;
services.httpd.adminAddr = "e.dolstra@tudelft.nl";
services.httpd.documentRoot = "${pkgs.valgrind}/share/doc/valgrind/html";
};
config = (import ../lib/eval-config.nix {
system = "i686-linux";
modules = [ machine ../modules/virtualisation/amazon-image.nix ];
}).config;
}