From 90db829f85131c4c11154e9e11f2403de8cf7b3e Mon Sep 17 00:00:00 2001 From: Jimbo Date: Thu, 23 Jan 2025 13:42:31 -0500 Subject: [PATCH] Allow Steam using allowUnfreePredicate --- modules/home/programs/misc/gaming/launchers/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/home/programs/misc/gaming/launchers/default.nix b/modules/home/programs/misc/gaming/launchers/default.nix index 1333f5b..39ece41 100644 --- a/modules/home/programs/misc/gaming/launchers/default.nix +++ b/modules/home/programs/misc/gaming/launchers/default.nix @@ -6,4 +6,9 @@ steam steam-run ]; + + nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ + "steam" + "steam-unwrapped" + ]; }