diff --git a/layers/steam.nix b/layers/steam.nix
index d67cde173bb3c8b1442627ebc2a1e9561c15b890..5c983d9f0e7d51af8beaedbd91cb3ff401dd5d1a 100644
--- a/layers/steam.nix
+++ b/layers/steam.nix
@@ -10,9 +10,12 @@ with lib;
 #
 #in
 {
+  hardware.opengl.enable = true;
   hardware.opengl.driSupport32Bit = true;
   hardware.pulseaudio.support32Bit = true;
 
+  programs.steam.enable = true;
+
   users.users.steam = {
     isNormalUser = true;
     uid = 1100;
@@ -24,9 +27,9 @@ with lib;
       "input"
     ];
     packages = [
-      pkgs.steam
+      #pkgs.steam
       pkgs.steam-run-native
-      pkgs.gamescope
+      #pkgs.gamescope
     ];
   };
 }