1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-26 00:18:30 +02:00
home-manager/modules/services/clipmenu.nix
Loïc Reynier 3d3bbdfe95
clipmenu: add launcher option
This adds an option to set the launcher command for Clipmenu
(which is set with the `CM_LAUNCHER` session variable).
2022-08-26 00:52:29 +02:00

62 lines
1.4 KiB
Nix

{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.clipmenu;
in {
meta.maintainers = [ maintainers.DamienCassou ];
options.services.clipmenu = {
enable = mkEnableOption "clipmenu, the clipboard management daemon";
package = mkOption {
type = types.package;
default = pkgs.clipmenu;
defaultText = "pkgs.clipmenu";
description = "clipmenu derivation to use.";
};
launcher = mkOption {
type = types.nullOr types.str;
default = null;
example = "rofi";
description = ''
Launcher command, if not set, <command>dmenu</command>
will be used by default.
'';
};
};
config = mkIf cfg.enable {
assertions = [
(lib.hm.assertions.assertPlatform "services.clipmenu" pkgs
lib.platforms.linux)
];
home.packages = [ cfg.package ];
home.sessionVariables =
mkIf (cfg.launcher != null) { CM_LAUNCHER = cfg.launcher; };
systemd.user.services.clipmenu = {
Unit = {
Description = "Clipboard management daemon";
After = [ "graphical-session.target" ];
};
Service = {
ExecStart = "${cfg.package}/bin/clipmenud";
Environment = "PATH=${
makeBinPath
(with pkgs; [ coreutils findutils gnugrep gnused systemd ])
}";
};
Install = { WantedBy = [ "graphical-session.target" ]; };
};
};
}