Gaming: add pcsx2

This commit is contained in:
Toast 2024-04-27 20:34:11 +02:00
parent 8699442aba
commit 2eb19d7374
2 changed files with 8 additions and 0 deletions

View file

@ -4,6 +4,7 @@
./mangohud.nix
./rpcs3.nix
./retroarch.nix
./pcsx2.nix
];
environment.systemPackages = with pkgs; [
heroic

View file

@ -0,0 +1,7 @@
{pkgs, ...}: {
home-manager.users.toast = {
home.packages = with pkgs; [
pcsx2
];
};
}