mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
27 lines
679 B
Nix
27 lines
679 B
Nix
{ config, lib, pkgs, ... }:
|
|
let
|
|
cfg = config.services.greenclip;
|
|
in {
|
|
|
|
options.services.greenclip = {
|
|
enable = lib.mkEnableOption "Greenclip, a clipboard manager";
|
|
|
|
package = lib.mkPackageOption pkgs [ "haskellPackages" "greenclip" ] { };
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
systemd.user.services.greenclip = {
|
|
enable = true;
|
|
description = "greenclip daemon";
|
|
wantedBy = [ "graphical-session.target" ];
|
|
after = [ "graphical-session.target" ];
|
|
serviceConfig = {
|
|
ExecStart = "${cfg.package}/bin/greenclip daemon";
|
|
Restart = "always";
|
|
};
|
|
};
|
|
|
|
environment.systemPackages = [ cfg.package ];
|
|
};
|
|
}
|