From 7064bbebe384f2f2284c053d5e1497119da45345 Mon Sep 17 00:00:00 2001 From: m3tam3re
Date: Sat, 12 Sep 2026 13:50:34 +0200 Subject: [PATCH] feat: emulators --- profiles/sets/gaming/emulators.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 profiles/sets/gaming/emulators.nix diff --git a/profiles/sets/gaming/emulators.nix b/profiles/sets/gaming/emulators.nix new file mode 100644 index 0000000..a46c4a6 --- /dev/null +++ b/profiles/sets/gaming/emulators.nix @@ -0,0 +1,18 @@ +{ + config, + lib, + pkgs, + ... +}: +with lib; let + cfg = config.profiles.gaming.emulators; +in { + options.profiles.gaming.gamescope.enable = mkEnableOption "enable Emulators"; + + config = mkIf cfg.enable { + home.packages = with pkgs; [ + shadps4 + shadps4-qtlauncher + ]; + }; +}