diff --git a/2configs/tools/games.nix b/2configs/tools/games.nix
index 47f0628..0257e18 100644
--- a/2configs/tools/games.nix
+++ b/2configs/tools/games.nix
@@ -1,8 +1,10 @@
 { pkgs, ... }:
 
 {
-  krebs.per-user.makefu.packages = with pkgs; [
-    steam
+  imports = [
+    ../steam.nix
+  ];
+  users.users.makefu.packages = with pkgs; [
     games-user-env
   ];
 }
diff --git a/2configs/steam.nix b/2configs/tools/steam.nix
similarity index 51%
rename from 2configs/steam.nix
rename to 2configs/tools/steam.nix
index d4ec84a..dbe5127 100644
--- a/2configs/steam.nix
+++ b/2configs/tools/steam.nix
@@ -1,6 +1,10 @@
 {pkgs, ...}:
 {
-  environment.systemPackages = [ pkgs.steam ];
+  environment.systemPackages = [ 
+    (pkgs.steam.override {
+      newStdcpp = true;
+    })
+  ];
   hardware.opengl.driSupport32Bit = true;
   hardware.pulseaudio.support32Bit = true;
 }