From 7da24cbbfb7301db645fb706538913b390853ae8 Mon Sep 17 00:00:00 2001 From: worble Date: Thu, 22 May 2025 22:19:43 +0100 Subject: [PATCH] enable gamescope --- configuration/modules/gaming.nix | 5 +++-- home-manager/gaming.nix | 6 +++++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/configuration/modules/gaming.nix b/configuration/modules/gaming.nix index e389497..6aeef16 100644 --- a/configuration/modules/gaming.nix +++ b/configuration/modules/gaming.nix @@ -8,11 +8,12 @@ enable = true; remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server - #gamescopeSession.enable = true; + gamescopeSession.enable = true; protontricks.enable = true; extraCompatPackages = [ pkgs.proton-ge-bin ]; }; programs.gamemode.enable = true; programs.gamescope.enable = true; - programs.cdemu.enable = true; + + programs.cdemu.enable = true; # Remember to add users to the cdrom group for this to work } diff --git a/home-manager/gaming.nix b/home-manager/gaming.nix index 5f1e868..2ad766c 100644 --- a/home-manager/gaming.nix +++ b/home-manager/gaming.nix @@ -7,6 +7,10 @@ ryubing mgba scanmem - heroic + (heroic.override { + extraPkgs = pkgs: [ + pkgs.gamescope + ]; + }) ]; }