Removed Trayscale Flake. (Default package works when using right tailscale user configuration). Fixed yakuake autostart.

This commit is contained in:
2025-09-02 12:49:09 +02:00
parent 8d61a29691
commit 9eb416a46e
7 changed files with 25 additions and 69 deletions

View File

@ -16,18 +16,19 @@
systemd.user.services.autostart-yakuake = {
enable = true;
description = "Automatically start Yakuake";
#after = [ "plasma-desktop.service" ];
after = [ "graphical-session.target" ];
serviceConfig.ExecStart = [ "${pkgs.kdePackages.yakuake}/bin/yakuake" ];
wantedBy = [ "default.target" ];
wantedBy = [ "graphical-session.target" ];
serviceConfig = {
Type = "oneshot";
Restart = "on-failure";
RestartSec = "5s";
Environment = "PATH=/run/current-system/sw/bin:/etc/profiles/per-user/$USER/bin";
};
};
systemd.user.services.autostart-trayscale = {
enable = false;
enable = true;
description = "Automatically start Trayscale";
#after = [ "plasma-desktop.service" ];
serviceConfig.ExecStart = [ "${pkgs.trayscale}/bin/trayscale --hide-window" ];