summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSoramane <61896496+soramanew@users.noreply.github.com>2025-07-16 19:11:15 +1000
committerSoramane <61896496+soramanew@users.noreply.github.com>2025-07-16 19:11:15 +1000
commit672a3736377116d95ee3bced2b23e6078f4a763f (patch)
treed0c9b8410db330799d6ea0120239500543936570
parentinternal: use new qs imports (diff)
downloadcaelestia-shell-672a3736377116d95ee3bced2b23e6078f4a763f.tar.gz
caelestia-shell-672a3736377116d95ee3bced2b23e6078f4a763f.tar.bz2
caelestia-shell-672a3736377116d95ee3bced2b23e6078f4a763f.zip
nix: add qt log rules to devshell
-rw-r--r--flake.nix11
1 files changed, 8 insertions, 3 deletions
diff --git a/flake.nix b/flake.nix
index 28d2918..d29bec6 100644
--- a/flake.nix
+++ b/flake.nix
@@ -53,9 +53,14 @@
pkgs.mkShellNoCC {
inputsFrom = [shell];
packages = [pkgs.material-symbols];
- shellHook = ''
- export CAELESTIA_BD_PATH=${shell}/bin/beat_detector
- '';
+ CAELESTIA_BD_PATH = "${shell}/bin/beat_detector";
+ QT_LOGGING_RULES = builtins.concatStringsSep ";" [
+ "quickshell.dbus.properties.warning=false"
+ "quickshell.dbus.dbusmenu.warning=false"
+ "quickshell.service.notifications.warning=false"
+ "quickshell.service.sni.host.warning=false"
+ "qt.qpa.wayland.textinput.warning=false"
+ ];
};
});
};