fix flameshot system tray

This commit is contained in:
sadan 2025-03-25 21:37:45 -04:00
parent f81984bc7d
commit 12e4a264bd
No known key found for this signature in database

View file

@ -1,5 +1,12 @@
{ config, ... }: {
systemd.user.services.flameshot.Unit.After = [];
{ config, ... }:
{
# needed to workaround https://github.com/nix-community/home-manager/issues/2064
systemd.user.targets.tray = {
Unit = {
Description = "Home Manager System Tray";
Requires = [ "graphical-session-pre.target" ];
};
};
services = {
flameshot = {
enable = true;