Compare commits

...

3 commits

Author SHA1 Message Date
7eae2ded13 Gaming/cemu: add wii u discs 2024-07-26 11:23:01 +02:00
bf3c360a0d Gaming: add cemu 2024-07-26 11:23:01 +02:00
48f97c5aae Desktop: add sysdvr-qt 2024-07-26 11:23:01 +02:00
4 changed files with 31 additions and 0 deletions

View file

@ -9,5 +9,6 @@
./ssh.nix
./appimage.nix
./mpv.nix
./sysdvr-qt.nix
];
}

View file

@ -0,0 +1,8 @@
{...}: {
services.udev.extraRules = ''
SUBSYSTEM=="usb", ATTRS{idVendor}=="18d1", ATTRS{idProduct}=="4ee0", MODE="0666"
'';
home-manager.users.toast.services.flatpak = {
packages = ["io.github.parnassius.SysDVR-Qt"];
};
}

View file

@ -0,0 +1,21 @@
{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=";
}
);
};
};
};
}

View file

@ -5,6 +5,7 @@
./rpcs3.nix
./retroarch.nix
./pcsx2.nix
./cemu.nix
];
environment.systemPackages = with pkgs; [
heroic