Skip to content

Commit

Permalink
gaming: fix yuzu check
Browse files Browse the repository at this point in the history
  • Loading branch information
Atemu committed Nov 8, 2024
1 parent b43d335 commit 96f1b7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/gaming/module.nix
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ in
# Was removed upstream but I still have it in my Nixpkgs fork. This is a
# little hack for making it possible to at least eval the rest of my
# config with nixpkgs trees that do not have yuzu.
++ lib.optional (builtins.tryEval pkgs.yuzu-ea).success pkgs.yuzu-ea
++ lib.optional (pkgs ? yuzu-ea && (builtins.tryEval pkgs.yuzu-ea).success) pkgs.yuzu-ea
++ [
obs
];
Expand Down

0 comments on commit 96f1b7c

Please sign in to comment.