From bcf0c17c51cb7adf01950ac4e9657b6d76fe571e Mon Sep 17 00:00:00 2001 From: Cookiez Date: Tue, 2 Jun 2026 12:07:02 +0200 Subject: [PATCH] Changed yakuake autostart to only start in KDE Plasma --- plasma/autostart.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/plasma/autostart.nix b/plasma/autostart.nix index 9730a58..8bab669 100644 --- a/plasma/autostart.nix +++ b/plasma/autostart.nix @@ -12,6 +12,11 @@ description = "Automatically start Yakuake"; after = ["graphical-session.target"]; wantedBy = ["graphical-session.target"]; + + unitConfig = { + ConditionEnvironment = "XDG_CURRENT_DESKTOP=KDE"; + }; + serviceConfig = { ExecStart = ["${pkgs.kdePackages.yakuake}/bin/yakuake"];