2026-09-12 13:50:34 +02:00
|
|
|
{
|
|
|
|
|
config,
|
|
|
|
|
lib,
|
|
|
|
|
pkgs,
|
|
|
|
|
...
|
|
|
|
|
}:
|
|
|
|
|
with lib; let
|
|
|
|
|
cfg = config.profiles.gaming.emulators;
|
|
|
|
|
in {
|
2026-09-12 14:00:38 +02:00
|
|
|
options.profiles.gaming.emulators.enable = mkEnableOption "Emulators";
|
2026-09-12 13:50:34 +02:00
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
|
shadps4
|
|
|
|
|
shadps4-qtlauncher
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
}
|