System > Autostart? #449
-
I'm looking to configure autostart for my password manager. I was able to add this to Plasma (6) using the GUI, however when I ran rc2nix again A and B were identical. I wonder if I'm missing something obvious, but is this feasible to address with plasma-manager? Curious what's involved Thank you for any information you can offer ~Katie |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
I'm pretty sure plasma just uses startup.startupScript."start_syncthing" = {
text = "syncthing; syncthingtray";
priority = 4;
}; But I won't advise you to do so, since it could cause some issues (see #348), since we do it in a bit odd way, because we do it for running the panel scripts, etc. I would recommend that you do it yourself with home-manager. |
Beta Was this translation helpful? Give feedback.
You can add it via the GUI, and then just copy paste the
.desktop
file content into home-manager. It should look something like this:plasma-manager/modules/startup.nix
Lines 210 to 217 in d16bbde