new gaming module

This commit is contained in:
Vinzenz Schroeter 2023-09-23 11:29:46 +02:00
parent 3f5720d73c
commit 1df7490752
5 changed files with 40 additions and 36 deletions

View file

@ -0,0 +1,29 @@
{
config,
pkgs,
lib,
...
}: let
cfg = config.my.desktop.gaming;
in {
imports = [];
config = lib.mkIf cfg.enable {
hardware.opengl.driSupport32Bit = true;
environment.systemPackages = with pkgs; [
wineWowPackages.stagingFull
wineWowPackages.fonts
winetricks
steam
(lutris.override {
extraPkgs = pkgs: [
# List package dependencies here
];
extraLibraries = pkgs: [
# List library dependencies here
];
})
];
};
}