fix(home): Manually create target.tray

Home manager stable only creates this on xorg. It is fixed in future
versions.
This commit is contained in:
punkfairie 2025-02-28 18:50:09 -08:00
parent 8b81c32ec5
commit 6817826e04
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6

View file

@ -0,0 +1,13 @@
{
config,
lib,
...
}: {
# Fix the "tray.target not found" error.
systemd.user.targets.tray = lib.mkIf (!config.xsession.enable) {
Unit = {
Description = "Home Manager System Tray";
Requires = ["graphical-session-pre.target"];
};
};
}