mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-03-31 04:31:55 -04:00
fix flameshot system tray
This commit is contained in:
parent
f81984bc7d
commit
12e4a264bd
1 changed files with 9 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue