staging
This commit is contained in:
parent
62efd21ccb
commit
440506cabf
2 changed files with 15 additions and 2 deletions
|
|
@ -1,15 +1,27 @@
|
||||||
{pkgs, ...}: {
|
{pkgs, ...}: let
|
||||||
|
rpcs3_latest = pkgs.rpcs3.overrideAttrs (oldAttrs: {
|
||||||
|
src = builtins.fetchGit {
|
||||||
|
url = "https://github.com/RPCS3/rpcs3.git";
|
||||||
|
ref = "master";
|
||||||
|
};
|
||||||
|
});
|
||||||
|
in {
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
mgba
|
mgba
|
||||||
desmume
|
desmume
|
||||||
duckstation
|
duckstation
|
||||||
pcsx2
|
pcsx2
|
||||||
rpcs3
|
|
||||||
ryujinx
|
ryujinx
|
||||||
mupen64plus
|
mupen64plus
|
||||||
dolphin-emu
|
dolphin-emu
|
||||||
retroarch
|
retroarch
|
||||||
mednafen
|
mednafen
|
||||||
joycond
|
joycond
|
||||||
|
(
|
||||||
|
if (builtins.tryEval rpcs3_latest).success
|
||||||
|
then rpcs3_latest
|
||||||
|
else rpcs3
|
||||||
|
)
|
||||||
|
# uses latest commit, but in case of errors (if there were any in the first place) to fallback to snapshot nix package in case it failed (even if not)
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -16,6 +16,7 @@ in {
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
brave # TODO: make a module to save browser stuff
|
brave # TODO: make a module to save browser stuff
|
||||||
vesktop
|
vesktop
|
||||||
|
discord
|
||||||
obs-studio
|
obs-studio
|
||||||
spotify
|
spotify
|
||||||
flameshot
|
flameshot
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue