summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2026-01-12 20:35:43 -0500
committertriethyl <triethylammonium@pm.me>2026-01-12 20:35:43 -0500
commit93c6e6d99274b0bd3aed035db3fe939d9855207d (patch)
treede2828f316f50539d37a97ca5e587163694a8de8
parent5aa8bda20900c398ecc11aa57e20f00057366f2f (diff)
nixos: fixed steam black screen issue
-rw-r--r--nixos/features/gui/apps/steam.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/nixos/features/gui/apps/steam.nix b/nixos/features/gui/apps/steam.nix
index d63b3a1..8decad3 100644
--- a/nixos/features/gui/apps/steam.nix
+++ b/nixos/features/gui/apps/steam.nix
@@ -10,6 +10,9 @@ in {
config = lib.mkIf cfg.enable {
programs.steam = {
enable = true;
+ package = pkgs.steam.override {
+ extraArgs = "-system-composer";
+ };
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
gamescopeSession.enable = true;