feat: emulators

This commit is contained in:
m3tam3re
2026-09-12 13:50:34 +02:00
parent 9c94b70c93
commit 7064bbebe3
+18
View File
@@ -0,0 +1,18 @@
{
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
];
};
}