Skip to content

Commit

Permalink
workaround missing systemd service
Browse files Browse the repository at this point in the history
  • Loading branch information
stooj committed Nov 23, 2024
1 parent 1568b87 commit 19b2f9f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions stooj.nix
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,15 @@
enable = true;
};

# Workaround for Failed to restart syncthingtray.service: Unit tray.target not found.
# - https://github.com/nix-community/home-manager/issues/2064
systemd.user.targets.tray = {
Unit = {
Description = "Home Manager System Tray";
Requires = [ "graphical-session-pre.target" ];
};
};

xsession.windowManager.i3 = {
enable = true;
package = pkgs.i3-gaps;
Expand Down

0 comments on commit 19b2f9f

Please sign in to comment.