2022-02-02 11:08:36 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.ptw.programs.gaming;
|
|
|
|
in {
|
|
|
|
options.ptw.programs.gaming = {
|
|
|
|
enable = lib.mkEnableOption "Configure gaming options";
|
|
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
environment.systemPackages = with pkgs; [
|
2022-05-03 13:04:01 +00:00
|
|
|
wineWowPackages.staging winetricks
|
|
|
|
protontricks
|
|
|
|
|
|
|
|
lutris-free-wrapped
|
2022-03-19 14:19:11 +00:00
|
|
|
|
2022-03-27 17:31:00 +00:00
|
|
|
(pkgs.callPackage ./wrapper.nix {
|
|
|
|
inherit (pkgs) retroarch;
|
|
|
|
cores = with pkgs.libretro; [
|
|
|
|
mgba mupen64plus melonds desmume dolphin
|
|
|
|
];
|
|
|
|
})
|
2022-03-19 14:19:11 +00:00
|
|
|
|
|
|
|
steam-wrapped # Custom package
|
2022-06-15 17:43:12 +00:00
|
|
|
|
2022-07-15 10:50:15 +00:00
|
|
|
gamescope
|
2022-05-03 13:04:01 +00:00
|
|
|
|
|
|
|
corectrl
|
2022-02-02 11:08:36 +00:00
|
|
|
];
|
2022-03-19 14:19:11 +00:00
|
|
|
|
|
|
|
hardware.steam-hardware.enable = true;
|
2022-02-02 11:08:36 +00:00
|
|
|
};
|
|
|
|
}
|