From ae608542478aa8a0be490bc53e1ccec12a3e4820 Mon Sep 17 00:00:00 2001 From: Anthony Rodriguez Date: Thu, 19 Dec 2024 19:12:01 +0100 Subject: [PATCH] nixos/programs/games: add proton-ge declaratively --- config/nixos/programs/games.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/config/nixos/programs/games.nix b/config/nixos/programs/games.nix index a5010fc..3ede3e9 100644 --- a/config/nixos/programs/games.nix +++ b/config/nixos/programs/games.nix @@ -1,6 +1,12 @@ -{ +{pkgs, ...}: { programs = { - steam.enable = true; + steam = { + enable = true; + extraCompatPackages = [ + pkgs.proton-ge-bin + ]; + }; + gamemode.enable = true; gamescope.enable = true;