Files
m3ta-home/profiles/sets/gaming/emulators.nix
T
2026-09-12 13:50:34 +02:00

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