diff --git a/profiles/DerGeret/partition.nix b/profiles/DerGeret/partition.nix
new file mode 100644
index 00000000..7cb9641f
--- /dev/null
+++ b/profiles/DerGeret/partition.nix
@@ -0,0 +1,21 @@
+{ ... }: {
+  imports = [
+    ../../lib/modules/partition.nix
+  ];
+
+  config =  {
+    partition.os.partitions = {
+      # Keep Windows' boot partition
+      Boot.keepExisting = true;
+
+      Windows = {
+        index = 6;
+        label = "OS";
+        format = "ntfs";
+        size = "+600G";
+        mountPoint = "/win";
+        mountOptions = ["force"];
+      };
+    };
+  };
+}