19 lines
293 B
Nix
19 lines
293 B
Nix
{
|
|
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
|
|
];
|
|
};
|
|
}
|