Files
m3ta-home/profiles/sets/gaming/emulators.nix
T

19 lines
293 B
Nix
Raw Normal View History

2026-09-12 13:50:34 +02:00
{
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
];
};
}