21 lines
683 B
Nix
21 lines
683 B
Nix
{pkgs, ...}: {
|
|
home-manager.users.toast = {
|
|
home = {
|
|
packages = [pkgs.cemu];
|
|
file = {
|
|
"Games/Isos/Wii U/Kirby and the Rainbow Paintbrush.wux".source = (
|
|
pkgs.fetchurl {
|
|
url = "http://dl.everest.tailscale/Wii%20U/Kirby%20and%20the%20Rainbow%20Paintbrush.wux";
|
|
hash = "sha256-taPGf709N2p3GlqqT92+SbOeD7QNKFUfB9X5urWVQps=";
|
|
}
|
|
);
|
|
"Games/Isos/Wii U/Mario Kary 8.wux".source = (
|
|
pkgs.fetchurl {
|
|
url = "http://dl.everest.tailscale/Wii%20U/Mario%20Kart%208.wux";
|
|
hash = "sha256-O6lOkLUKPZi+FiEWJQQEeiEXOo+GTUecoSpGjE811k0=";
|
|
}
|
|
);
|
|
};
|
|
};
|
|
};
|
|
}
|