Files

19 lines
286 B
Nix
Raw Permalink 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.emulators.enable = mkEnableOption "Emulators";
2026-09-12 13:50:34 +02:00
config = mkIf cfg.enable {
home.packages = with pkgs; [
shadps4
shadps4-qtlauncher
];
};
}