This commit is contained in:
caem 2025-01-25 15:36:03 +01:00
parent 91148ed9a2
commit 7266529146
Signed by: caem
GPG key ID: 69A830D03203405F
3 changed files with 14 additions and 3 deletions

12
overlays/steam.nix Normal file
View file

@ -0,0 +1,12 @@
{ ... }: final: prev: {
steam = prev.steam.override {
extraBwrapArgs = [
"--bind $HOME/.local/steam_home $HOME"
"--unsetenv XDG_CACHE_HOME"
"--unsetenv XDG_CONFIG_HOME"
"--unsetenv XDG_DATA_HOME"
"--unsetenv XDG_STATE_HOME"
];
};
}