Gaming/retroarch: add snes roms
This commit is contained in:
parent
b20181aec5
commit
1f281357aa
1 changed files with 14 additions and 0 deletions
|
|
@ -1,4 +1,14 @@
|
|||
{ 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 = {
|
||||
|
|
@ -13,6 +23,10 @@
|
|||
};
|
||||
}
|
||||
)];
|
||||
file."Games/Roms/SNES/".source = pkgs.symlinkJoin {
|
||||
name = "snes-roms";
|
||||
paths = [ actraiser kirby-super-star ];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue