feat: proton-ge and wine-ge

This commit is contained in:
ooks-io 2024-02-19 21:49:24 +13:00
parent 90e288954d
commit eb7eed26be

View file

@ -16,6 +16,7 @@ let
keyutils keyutils
mangohud mangohud
winetricks winetricks
inputs.nix-gaming.packages.${pkgs.system}.wine-ge
protontricks protontricks
]; ];
}; };
@ -52,5 +53,13 @@ in
}; };
}; };
services.pipewire.lowLatency.enable = true; services.pipewire.lowLatency.enable = true;
nixpkgs.overlays = [
(_: prev: {
steam = prev.steam.override {
extraProfile = "export STEAM_EXTRA_COMPAT_TOOLS_PATHS='${inputs.nix-gaming.packages.${pkgs.system}.proton-ge}'";
};
})
];
}; };
} }