From f1525ef8eeff8c174157762a61126f9ac448b77c Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Mon, 25 Dec 2023 19:25:24 +0000 Subject: [PATCH] Require mesa package for steam rather than gamescope --- system/gamescope.nix | 3 +-- system/steam.nix | 3 ++- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/system/gamescope.nix b/system/gamescope.nix index 9c94e064..019ccbc7 100644 --- a/system/gamescope.nix +++ b/system/gamescope.nix @@ -1,6 +1,5 @@ -{ pkgs, user, ... }: { +{ user, ... }: { imports = [ ./default.nix ./steam.nix ]; - environment.systemPackages = with pkgs; [ mesa ]; sound.enable = true; hardware = { pulseaudio.enable = false; diff --git a/system/steam.nix b/system/steam.nix index 8a861b2a..2e76248d 100644 --- a/system/steam.nix +++ b/system/steam.nix @@ -1,4 +1,5 @@ -{ ... }: { +{ pkgs, ... }: { + environment.systemPackages = with pkgs; [ mesa ]; hardware = { opengl.driSupport32Bit = true; steam-hardware.enable = true;