nix: add qt log rules to devshell

This commit is contained in:
Soramane 2025-07-16 19:11:15 +10:00
parent 4598e8a775
commit 672a373637

View file

@ -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"
];
};
});
};