15 lines
203 B
Nix
15 lines
203 B
Nix
{ pkgs, … }:
|
|
|
|
{
|
|
|
|
home.packages = with pkgs; [
|
|
protonup
|
|
];
|
|
|
|
home.sessionVariables = {
|
|
STEAM_EXTRA_COMPAT_TOOLS_PATHS =
|
|
”\\\${HOME}/.steam/root/compatibilitytools.d”;
|
|
};
|
|
|
|
}
|