From 5769fcfd4e8fced057ebf5df9b7d623de0a229be Mon Sep 17 00:00:00 2001
From: Manuel Thalmann <m@nuth.ch>
Date: Sun, 9 Jul 2023 00:40:44 +0200
Subject: [PATCH] Change windows partition size for testing

---
 profiles/DerGeret/Windows/Setup.ps1 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/profiles/DerGeret/Windows/Setup.ps1 b/profiles/DerGeret/Windows/Setup.ps1
index f167deff..c7e1ccab 100644
--- a/profiles/DerGeret/Windows/Setup.ps1
+++ b/profiles/DerGeret/Windows/Setup.ps1
@@ -44,7 +44,7 @@ $Global:SetupConfigPostprocessor = {
 
     # Add space before Windows installation... wha-!? For Linux, ofc! I use Arch Linux, btw.
     $size = ($partitionCreationContainer.SelectNodes("./ua:CreatePartition/ua:Size", $namespace) | Select-Object -First 1).CloneNode($true);
-    $size.InnerText = "$((1 * 1024 * 1024) - $garbage)";
+    $size.InnerText = "$((64 * 1024) - $garbage)";
     $null = $winPartition.RemoveChild($winPartition.SelectSingleNode("./ua:Extend", $namespace));
     $null = $winPartition.AppendChild($size);