Gaming/retroarch: add snes roms

This commit is contained in:
Toast 2023-12-30 20:40:59 +01:00
parent b20181aec5
commit 1f281357aa

View file

@ -1,4 +1,14 @@
{ pkgs, ... }: { pkgs, ... }:
let
actraiser = pkgs.fetchzip {
url = "https://myrient.erista.me/files/No-Intro/Nintendo%20-%20Super%20Nintendo%20Entertainment%20System/ActRaiser%20%28USA%29.zip";
hash = "sha256-yxIL5Pqlp8xsx7wvNO1MlB8ffDjS0xpE+yrEfMj61As=";
};
kirby-super-star = pkgs.fetchzip {
url = "https://myrient.erista.me/files/No-Intro/Nintendo%20-%20Super%20Nintendo%20Entertainment%20System/Kirby%20Super%20Star%20%28USA%29.zip";
hash = "sha256-NX5OjCthf4ZiAhamclRBRk8GiMjZX3JLeShm8sQdDfc=";
};
in
{ {
home-manager.users.toast = { home-manager.users.toast = {
home = { home = {
@ -13,6 +23,10 @@
}; };
} }
)]; )];
file."Games/Roms/SNES/".source = pkgs.symlinkJoin {
name = "snes-roms";
paths = [ actraiser kirby-super-star ];
};
}; };
}; };
} }