feat(home): disable wine file associations

This commit is contained in:
Felix Schröter 2024-03-09 10:49:19 +01:00
parent 4d7f809d06
commit e310721f8a
Signed by: felschr
GPG key ID: 671E39E6744C807D

View file

@ -103,4 +103,11 @@ in {
xdg.mimeApps.associations.added = associations; xdg.mimeApps.associations.added = associations;
xdg.mimeApps.associations.removed = noCalibre; xdg.mimeApps.associations.removed = noCalibre;
xdg.mimeApps.defaultApplications = associations; xdg.mimeApps.defaultApplications = associations;
home.packages = with pkgs; [ junction ];
home.sessionVariables = {
# prevent wine from creating file associations
WINEDLLOVERRIDES = "winemenubuilder.exe=d";
};
} }