From 3b314fa40b334a950704a16d53bd55a91f5c0f2a Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 14 May 2012 23:43:38 +0000 Subject: [PATCH] * Include cryptsetup in EC2 AMIs. svn path=/nixos/trunk/; revision=34096 --- modules/virtualisation/amazon-image.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/virtualisation/amazon-image.nix b/modules/virtualisation/amazon-image.nix index 55b1f5c0bd25..1891f816671c 100644 --- a/modules/virtualisation/amazon-image.nix +++ b/modules/virtualisation/amazon-image.nix @@ -146,4 +146,7 @@ with pkgs.lib; # Force getting the hostname from EC2. networking.hostName = mkDefault ""; + + # Always include cryptsetup so that Charon can use it. + environment.systemPackages = [ pkgs.cryptsetup ]; }