lots of updates; playing with wine

This commit is contained in:
2025-08-23 14:51:32 +01:00
parent cd1aac83b2
commit dd4ca5a69e
10 changed files with 64 additions and 23 deletions

View File

@@ -1,16 +1,48 @@
{ pkgs, ... }:
{
xdg.dataFile."proton/proton-ge" = {
source = pkgs.proton-ge-bin;
};
home.packages = with pkgs;[
steamguard-cli
# Wine / Proton
wineWowPackages.staging
winetricks
bottles
ryubing
mgba
scanmem
(heroic.override {
extraPkgs = pkgs: [
pkgs.gamescope
];
})
(umu-launcher.override {
extraPkgs = pkgs: with pkgs.gst_all_1; [
gstreamer
gst-plugins-base
gst-plugins-good
gst-plugins-bad
gst-plugins-ugly
gst-libav
gst-vaapi
gamescope
];
})
# Steam
steamguard-cli
# Emulators
ryubing
mgba
# Cheat engine
scanmem
];
# programs.lutris = {
# enable = true;
# extraPackages = with pkgs; [ mangohud winetricks gamescope gamemode umu-launcher ];
# protonPackages = [ pkgs.proton-ge-bin ];
# winePackages = [ pkgs.wineWowPackages.staging ];
# };
}