2019-01-30 01:38:47 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.services.greenclip;
|
|
|
|
in {
|
|
|
|
|
|
|
|
options.services.greenclip = {
|
2022-08-28 20:18:44 +01:00
|
|
|
enable = mkEnableOption (lib.mdDoc "Greenclip daemon");
|
2019-01-30 01:38:47 +00:00
|
|
|
|
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.haskellPackages.greenclip;
|
2021-10-03 17:06:03 +01:00
|
|
|
defaultText = literalExpression "pkgs.haskellPackages.greenclip";
|
2022-07-28 22:19:15 +01:00
|
|
|
description = lib.mdDoc "greenclip derivation to use.";
|
2019-01-30 01:38:47 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = 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";
|
|
|
|
};
|
|
|
|
|
|
|
|
environment.systemPackages = [ cfg.package ];
|
|
|
|
};
|
|
|
|
}
|