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 + ]; + }; +}