Compare commits
3 commits
777ab3a99b
...
7eae2ded13
| Author | SHA1 | Date | |
|---|---|---|---|
| 7eae2ded13 | |||
| bf3c360a0d | |||
| 48f97c5aae |
4 changed files with 31 additions and 0 deletions
|
|
@ -9,5 +9,6 @@
|
|||
./ssh.nix
|
||||
./appimage.nix
|
||||
./mpv.nix
|
||||
./sysdvr-qt.nix
|
||||
];
|
||||
}
|
||||
|
|
|
|||
8
roles/desktop/programs/sysdvr-qt.nix
Normal file
8
roles/desktop/programs/sysdvr-qt.nix
Normal 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"];
|
||||
};
|
||||
}
|
||||
21
roles/gaming/programs/cemu.nix
Normal file
21
roles/gaming/programs/cemu.nix
Normal 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=";
|
||||
}
|
||||
);
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -5,6 +5,7 @@
|
|||
./rpcs3.nix
|
||||
./retroarch.nix
|
||||
./pcsx2.nix
|
||||
./cemu.nix
|
||||
];
|
||||
environment.systemPackages = with pkgs; [
|
||||
heroic
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue