nixos/gpaste: also add to cinnamon session path - fixes #276028

This fixes gpaste-reloaded applet for cinnamon,
which requires gpaste's typelib to be accessible
This commit is contained in:
Maciej Krüger 2023-12-14 18:27:54 +01:00
parent f82870a99b
commit 6698e96026
No known key found for this signature in database
GPG Key ID: 0D948CE19CF49C5F

View File

@ -32,5 +32,7 @@ with lib;
systemd.packages = [ pkgs.gnome.gpaste ];
# gnome-control-center crashes in Keyboard Shortcuts pane without the GSettings schemas.
services.xserver.desktopManager.gnome.sessionPath = [ pkgs.gnome.gpaste ];
# gpaste-reloaded applet doesn't work without the typelib
services.xserver.desktopManager.cinnamon.sessionPath = [ pkgs.gnome.gpaste ];
};
}