From 49268397de1319ca04fde9157b6531de115871b7 Mon Sep 17 00:00:00 2001 From: Toast Date: Mon, 25 Sep 2023 23:29:40 +0200 Subject: [PATCH] Gaming: install rpcs3 --- roles/gaming/default.nix | 1 + roles/gaming/rpcs3.nix | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 roles/gaming/rpcs3.nix diff --git a/roles/gaming/default.nix b/roles/gaming/default.nix index fb3cce4..dc70b10 100755 --- a/roles/gaming/default.nix +++ b/roles/gaming/default.nix @@ -4,5 +4,6 @@ imports = [ ./steam.nix ./mangohud.nix + ./rpcs3.nix ]; } diff --git a/roles/gaming/rpcs3.nix b/roles/gaming/rpcs3.nix new file mode 100644 index 0000000..43b80d0 --- /dev/null +++ b/roles/gaming/rpcs3.nix @@ -0,0 +1,5 @@ +{ config, pkgs, ... }: + +{ + environment.systemPackages = with pkgs; [ rpcs3 ]; +}