diff --git a/hosts/modules/home.nix b/hosts/modules/home.nix index 1a3038c..71736c0 100644 --- a/hosts/modules/home.nix +++ b/hosts/modules/home.nix @@ -13,12 +13,18 @@ mullvad-vpn tor-browser exiftool - darktable digikam shotwell nextcloud-client bitwarden-desktop signal-desktop spotify + + (darktable.overrideAttrs (oldAttrs: { + nativeBuildInputs = (oldAttrs.nativeBuildInputs or []) ++ [ makeWrapper ]; + postInstall = (oldAttrs.postInstall or "") + '' + wrapProgram $out/bin/darktable --set GDK_BACKEND wayland + ''; + })) ]; }