mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
45 lines
863 B
Nix
45 lines
863 B
Nix
{pkgs, ...}: {
|
|
hardware.graphics = {
|
|
enable32Bit = true;
|
|
extraPackages32 = with pkgs; [
|
|
driversi686Linux.mesa
|
|
];
|
|
};
|
|
programs.gamescope = {
|
|
enable = true;
|
|
package = pkgs.gamescope;
|
|
};
|
|
environment.systemPackages = with pkgs; [
|
|
protonplus
|
|
gamescope-wsi
|
|
(lutris.override {
|
|
extraPkgs = _pkgs: [
|
|
#pkgs.gamescope
|
|
#pkgs.libnghttp2
|
|
#pkgs.winetricks
|
|
#pkgs.jansson
|
|
#pkgs.samba
|
|
#pkgs.gvfs
|
|
#pkgs.mangohud
|
|
#pkgs.vkbasalt
|
|
#pkgs.umu-launcher
|
|
#pkgs.xdg-desktop-portal
|
|
];
|
|
extraLibraries = _pkgs: [
|
|
#pkgs.libunwind
|
|
#pkgs.xdg-desktop-portal
|
|
#pkgs.gvfs
|
|
#pkgs.jansson
|
|
#pkgs.samba
|
|
#pkgs.xz
|
|
];
|
|
})
|
|
|
|
wine
|
|
wine64
|
|
vkbasalt
|
|
mangohud
|
|
umu-launcher
|
|
winetricks
|
|
];
|
|
}
|