Gaming/pcsx2: add isos

This commit is contained in:
Toast 2024-04-28 13:48:56 +02:00
parent 2eb19d7374
commit 944207fdd2

View file

@ -1,7 +1,20 @@
{pkgs, ...}: {
{pkgs, ...}: let
ps2-isos = [
(pkgs.fetchzip {
url = "https://myrient.erista.me/files/Redump/Sony%20-%20PlayStation%202/007%20-%20Nightfire%20%28USA%29.zip";
hash = "sha256-66Ey0SqC3Tk02Af+xR6rpxYSkO0n83NWYPCt4M3CUWo=";
})
];
in {
home-manager.users.toast = {
home.packages = with pkgs; [
pcsx2
];
home = {
packages = with pkgs; [
pcsx2
];
file."Games/Isos/PS2".source = pkgs.symlinkJoin {
name = "ps2-isos";
paths = [ps2-isos];
};
};
};
}