about summary refs log tree commit diff
path: root/nixos/modules/virtualisation
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/virtualisation')
-rw-r--r--nixos/modules/virtualisation/amazon-image.nix6
1 files changed, 1 insertions, 5 deletions
diff --git a/nixos/modules/virtualisation/amazon-image.nix b/nixos/modules/virtualisation/amazon-image.nix
index 7d16206517d4..2f6a95786a2c 100644
--- a/nixos/modules/virtualisation/amazon-image.nix
+++ b/nixos/modules/virtualisation/amazon-image.nix
@@ -79,11 +79,7 @@ let cfg = config.ec2; in
                 diskNr=$((diskNr + 1))
                 echo "mounting $device on $mp..."
                 if mountFS "$device" "$mp" "" ext3; then
-                    if [ -z "$diskForUnionfs" -a \
-                         $(lsblk -bno size $device) -gt $(lsblk -bno size /dev/xvda1)
-                       ]; then
-                       diskForUnionfs="$mp";
-                    fi
+                    if [ -z "$diskForUnionfs" ]; then diskForUnionfs="$mp"; fi
                 fi
             else
                 echo "skipping unknown device type $device"