nix: add wrapQtAppsHook (#461)

* nix: add wrapQtAppsHook

* nix: delete "QT_QPA_PLATFORMTHEME=gtk3"
This commit is contained in:
BardMoon 2025-08-23 14:15:19 +09:00 committed by GitHub
parent 3a5f615f50
commit 3840233e3f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -26,6 +26,7 @@
rubik, rubik,
nerd-fonts, nerd-fonts,
gcc, gcc,
qt6,
quickshell, quickshell,
aubio, aubio,
pipewire, pipewire,
@ -66,7 +67,7 @@ in
version = "${rev}"; version = "${rev}";
src = ./..; src = ./..;
nativeBuildInputs = [gcc makeWrapper]; nativeBuildInputs = [gcc makeWrapper qt6.wrapQtAppsHook];
buildInputs = [quickshell aubio pipewire]; buildInputs = [quickshell aubio pipewire];
propagatedBuildInputs = runtimeDeps; propagatedBuildInputs = runtimeDeps;

View file

@ -70,7 +70,6 @@ in {
TimeoutStopSec = "5s"; TimeoutStopSec = "5s";
Environment = [ Environment = [
"QT_QPA_PLATFORM=wayland" "QT_QPA_PLATFORM=wayland"
"QT_QPA_PLATFORMTHEME=gtk3"
]; ];
Slice = "session.slice"; Slice = "session.slice";