added launchers for proton games

This commit is contained in:
kenji
2025-07-09 16:47:40 -05:00
parent 1c82b5eafe
commit cdce0628ab
4 changed files with 18 additions and 7 deletions
+2
View File
@@ -19,5 +19,7 @@
++ [
../../packages/mangohud/home.nix
../../packages/protonup/home.nix
../../packages/bottles/home.nix
../../packages/lutris/home.nix
];
}
+5
View File
@@ -0,0 +1,5 @@
{pkgs, ...}: {
home.packages = with pkgs; [
bottles
];
}
+5
View File
@@ -0,0 +1,5 @@
{pkgs, ...}: {
home.packages = with pkgs; [
lutris
];
}
+6 -7
View File
@@ -1,14 +1,13 @@
{ pkgs, }:
{
pkgs,
myConfig,
...
}: {
home.packages = with pkgs; [
protonup
];
home.sessionVariables = {
STEAM_EXTRA_COMPAT_TOOLS_PATHS =
\\\${HOME}/.steam/root/compatibilitytools.d;
STEAM_EXTRA_COMPAT_TOOLS_PATHS = "/home/${myConfig.essentials.Username}/.steam/root/compatibilitytools.d";
};
}