forked from mirrors/nixpkgs
0a37316d6c
This commit replaces a lot of usages of `mkOption` with the package type, to be `mkPackageOption`, in order to reduce the amount of code.
27 lines
607 B
Nix
27 lines
607 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.clipcat;
|
|
in {
|
|
|
|
options.services.clipcat= {
|
|
enable = mkEnableOption (lib.mdDoc "Clipcat clipboard daemon");
|
|
|
|
package = mkPackageOption pkgs "clipcat" { };
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
systemd.user.services.clipcat = {
|
|
enable = true;
|
|
description = "clipcat daemon";
|
|
wantedBy = [ "graphical-session.target" ];
|
|
after = [ "graphical-session.target" ];
|
|
serviceConfig.ExecStart = "${cfg.package}/bin/clipcatd --no-daemon";
|
|
};
|
|
|
|
environment.systemPackages = [ cfg.package ];
|
|
};
|
|
}
|