mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 10:49:44 +01:00
aa1bf31bcb
This adds a Parcellite service. It has no configuration options, since the app has its own mutable preferences dialog, which unconditionally replaces `~/.config/parcellite/parcelliterc` when preferences are saved.
47 lines
1.1 KiB
Nix
47 lines
1.1 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.services.parcellite;
|
|
package = pkgs.parcellite;
|
|
|
|
in
|
|
|
|
{
|
|
meta.maintainers = [ maintainers.gleber ];
|
|
|
|
options = {
|
|
services.parcellite = {
|
|
enable = mkEnableOption "Parcellite";
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
home.packages = [ package ];
|
|
|
|
systemd.user.services.parcellite = {
|
|
Unit = {
|
|
Description = "Lightweight GTK+ clipboard manager";
|
|
After = [ "graphical-session-pre.target" ];
|
|
PartOf = [ "graphical-session.target" ];
|
|
};
|
|
|
|
Install = {
|
|
WantedBy = [ "graphical-session.target" ];
|
|
};
|
|
|
|
Service = {
|
|
# PATH have been added in nixpkgs.parcellite, keeping it here for
|
|
# backward compatibility. XDG_DATA_DIRS is necessary to make it pick up
|
|
# icons correctly.
|
|
Environment = ''
|
|
PATH=${package}/bin:${pkgs.which}/bin:${pkgs.xdotool}/bin XDG_DATA_DIRS=${pkgs.hicolor_icon_theme}/share
|
|
'';
|
|
ExecStart = "${package}/bin/parcellite";
|
|
Restart = "on-abort";
|
|
};
|
|
};
|
|
};
|
|
}
|