diff --git a/nixos/hosts/steamdeck/disks.nix b/nixos/hosts/steamdeck/disks.nix
index 3490cb86..32ce1d06 100644
--- a/nixos/hosts/steamdeck/disks.nix
+++ b/nixos/hosts/steamdeck/disks.nix
@@ -48,28 +48,5 @@
         }; # partitions
       }; # content
     }; # disko.devices.disk.nvme0
-
-    mmcblk0 = {
-      type = "disk";
-      device = "/dev/mmcblk0";
-      content = { 
-        type = "gpt";
-        partitions = { 
-          GAMES = {
-            size = "100%";
-            content = {
-              type = "btrfs";
-              extraArgs = [ "-f" ];
-              subvolumes = {
-                "/games" = {
-                  mountpoint = "/games";
-                  mountOptions = [ "compress=zstd" "noatime" ];
-                }; # sd_card
-              }; # subvolumes
-            }; # content
-          }; # partition 2 (MICROSD BTRFS)
-        }; # partitions
-      }; # content
-    }; # disko.devices.disk.mmcblk0
   }; # disko.devices
 } # root