From f273983bfbdfeccf47484abceedcc568a7e322ba Mon Sep 17 00:00:00 2001 From: Fredrik Robertsen Date: Mon, 11 May 2026 11:31:12 +0200 Subject: [PATCH] tidal-hifi: use --no-sandbox flag wrapper --- hosts/gaming/default.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/hosts/gaming/default.nix b/hosts/gaming/default.nix index 56e1c37..13b603f 100644 --- a/hosts/gaming/default.nix +++ b/hosts/gaming/default.nix @@ -39,7 +39,14 @@ gnomeExtensions.appindicator nvtopPackages.nvidia lutris - tidal-hifi + (symlinkJoin { + name = "tidal-hifi-wrapped"; + paths = [ tidal-hifi ]; + nativeBuildInputs = [ makeWrapper ]; + postBuild = '' + wrapProgram $out/bin/tidal-hifi --add-flags "--no-sandbox" + ''; + }) ]; hardware.graphics.enable = true;