Gaming/pcsx2: add isos
This commit is contained in:
parent
2eb19d7374
commit
944207fdd2
1 changed files with 17 additions and 4 deletions
|
|
@ -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];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue