From 656608c84ae2467827185d8e6877d42869a3c2cd Mon Sep 17 00:00:00 2001 From: Emmet Date: Sat, 22 Jun 2024 21:13:03 -0500 Subject: [PATCH] Fixed some game packages --- user/app/games/games.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/user/app/games/games.nix b/user/app/games/games.nix index 441c61c..e512bd0 100644 --- a/user/app/games/games.nix +++ b/user/app/games/games.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: +{ pkgs, pkgs-stable, ... }: let myRetroarch = (pkgs.retroarch.override { @@ -22,7 +22,7 @@ let }); in { - home.packages = with pkgs; [ + home.packages = (with pkgs; [ # Games pegasus-frontend myRetroarch @@ -31,8 +31,10 @@ in qjoypad superTux superTuxKart - #pokefinder - ]; + gamepad-tool + ]) ++ (with pkgs-stable; [ + pokefinder + ]); nixpkgs.config = { allowUnfree = true;