[nix] moves gaming stuff to it's own file.

This commit is contained in:
2025-02-12 19:18:38 -08:00
parent 77a9c37df7
commit 3ba070810b
3 changed files with 18 additions and 12 deletions

View File

@@ -0,0 +1,16 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
# Gaming
mangohud
(lutris.override {
extraPkgs = pkgs: [
winetricks # Needed for bnet setup.
vulkan-tools # Needed for bnet setup
];
})
protonup-ng
vulkan-tools # useful for debugging Vulkan issues
wowup-cf
];
}