nixos-config/modules/programs/gaming/default.nix

28 lines
641 B
Nix

{ 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; [
winePackages.stagingFull winetricks lutris-free-wrapped
(pkgs.callPackage ./wrapper.nix {
inherit (pkgs) retroarch;
cores = with pkgs.libretro; [
mgba mupen64plus melonds desmume dolphin
];
})
steam-wrapped # Custom package
nur.repos.dukzcry.gamescope
];
hardware.steam-hardware.enable = true;
};
}