https://bugs.kde.org/show_bug.cgi?id=488446
--- Comment #11 from tagwer...@innerjoin.org --- (In reply to contact from comment #6) > Well this is the joy of using stupid things like nixos, because no you can't > do it that way and there is no documentation about how to actually configure > it. I will be back when I found out how to do that. Ah... I have a flake/module that's probably outdated (won't be Plasma5 now...) { config, pkgs, ... }: { environment.systemPackages = with pkgs; [ libsForQt5.baloo libsForQt5.baloo-widgets ]; systemd.user.services.kde-baloo = { description = "Baloo File Indexer Daemon"; partOf = [ "graphical-session.target" ]; serviceConfig = { ExecStart = "${pkgs.plasma5Packages.baloo}/libexec/baloo_file"; ExecCondition = "${pkgs.plasma5Packages.plasma-workspace}/bin/kde-systemd-start-condition --condition \"baloofilerc:Basic Settings:Indexing-Enabled:true\""; BusName = "org.kde.baloo"; Slice = "background.slice"; CPUQuota = "100%"; CPUWeight = 1; IOWeight = 1; MemoryHigh = "50%"; MemorySwapMax = 0; }; wantedBy = [ "graphical-session.target" ]; }; } -- You are receiving this mail because: You are watching all bug changes.