From 580601ddd59a33bb1fde88f8038c5c450b1b66a0 Mon Sep 17 00:00:00 2001 From: Natsu Kagami Date: Mon, 22 Apr 2024 12:32:14 +0200 Subject: [PATCH] Add qtwayland to buildInputs of owncloud-client --- home/common-linux.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/home/common-linux.nix b/home/common-linux.nix index b03de05..5225f1e 100644 --- a/home/common-linux.nix +++ b/home/common-linux.nix @@ -43,6 +43,9 @@ with lib; { # Owncloud services.owncloud-client.enable = true; + services.owncloud-client.package = pkgs.owncloud-client.overrideAttrs (attrs: { + buildInputs = attrs.buildInputs ++ [ pkgs.qt6.qtwayland ]; + }); # UDisks automounter services.udiskie.enable = true;