From 0b01d1b6f76fa1213523ec1dd906e6e570e0f0b6 Mon Sep 17 00:00:00 2001 From: "Alexander \"PapaTutuWawa" Date: Fri, 13 May 2022 12:50:06 +0200 Subject: [PATCH] sandbox: Give Steam and Lutris more access --- overlays/sandbox.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/overlays/sandbox.nix b/overlays/sandbox.nix index 67adfb1..9a4049a 100644 --- a/overlays/sandbox.nix +++ b/overlays/sandbox.nix @@ -39,7 +39,11 @@ in { name = "steam-wrapped"; binary = "${prev.steam}/bin/steam"; launchScriptName = "steam"; - mountInHome = [ ".steam" ".local/share/Steam" ]; + mountInHome = [ + ".steam" + ".local/share/Steam" + "Downloads/Skyrim Mods" + ]; additionalBlacklist = [ "/mnt" ]; additionalMounts = [ "/mnt/Storage/Games/SteamLibrary" ]; chdirTo = "/home/$USER"; @@ -79,7 +83,9 @@ in { launchScriptName = "lutris"; binary = "${prev.lutris-free}/bin/lutris"; additionalBlacklist = [ "/mnt" ]; - additionalMounts = [ "/mnt/Storage/Games/" ]; + additionalMounts = [ + "/mnt/Storage/Games/LeagueOfLegends" + ]; mountInHome = [ ".local/share/lutris" ".config/lutris" "Games" ]; chdirTo = "/home/$USER";