From e310721f8a74d342f196ff8003cf11ca6801571f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Schr=C3=B6ter?= Date: Sat, 9 Mar 2024 10:49:19 +0100 Subject: [PATCH] feat(home): disable wine file associations --- home/desktop/mimeapps.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/home/desktop/mimeapps.nix b/home/desktop/mimeapps.nix index 6cd8c46..ad6736b 100644 --- a/home/desktop/mimeapps.nix +++ b/home/desktop/mimeapps.nix @@ -103,4 +103,11 @@ in { xdg.mimeApps.associations.added = associations; xdg.mimeApps.associations.removed = noCalibre; xdg.mimeApps.defaultApplications = associations; + + home.packages = with pkgs; [ junction ]; + + home.sessionVariables = { + # prevent wine from creating file associations + WINEDLLOVERRIDES = "winemenubuilder.exe=d"; + }; }