This commit is contained in:
cnst
2024-08-02 18:48:27 +02:00
parent 177a490b1f
commit c08012466e
56 changed files with 150 additions and 441 deletions

20
nixos/opt/gaming.nix Normal file
View File

@@ -0,0 +1,20 @@
{pkgs, ...}: {
imports = [
./steam
./lutris
./bottles
./gamemode
./gamescope
./corectrl
];
environment = {
systemPackages = with pkgs; [
# Misc
protonup
winetricks
];
sessionVariables = {
STEAM_EXTRA_COMPAT_TOOLS_PATHS = "/home/cnst/.steam/root/compatibilitytools.d";
};
};
}