This commit is contained in:
2022-03-19 15:19:11 +01:00
parent c5f3a6e389
commit 32c395c33a
6 changed files with 31 additions and 13 deletions

View File

@@ -7,8 +7,22 @@ in {
enable = lib.mkEnableOption "Configure gaming options";
};
config = lib.mkIf cfg.enable {
nixpkgs.config.retroarch = {
enableDesmume = true;
enableMGBA = true;
enableDolphin = true;
};
environment.systemPackages = with pkgs; [
winePackages.stagingFull winetricks lutris-free-wrapped
retroarch
steam-wrapped # Custom package
nur.repos.dukzcry.gamescope
];
hardware.steam-hardware.enable = true;
};
}