From ae551d64c75e4642e28721cc7cdc3cd9942631df Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Wed, 20 Nov 2024 12:08:45 +0800 Subject: [PATCH] nixos/suites/desktop: add Qt5, Qt6, and GTK4 as part of nix-ld library path I don't even know if this is advisable to put it here. --- modules/nixos/_private/suites/desktop.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/modules/nixos/_private/suites/desktop.nix b/modules/nixos/_private/suites/desktop.nix index 4205b0ae..a0722e8f 100644 --- a/modules/nixos/_private/suites/desktop.nix +++ b/modules/nixos/_private/suites/desktop.nix @@ -85,8 +85,14 @@ in { pango pipewire ]; + desktopLibs = with pkgs; [ + qt5.full + qt6.full + gtk3 + gtk4 + ]; in - commonLibs ++ xorgLibs; + commonLibs ++ xorgLibs ++ desktopLibs; }; environment.systemPackages = with pkgs; [