1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00
home-manager/modules/services/clipmenu.nix
Austin Horstman 86402a17b6 treewide: flatten single file modules
Some files don't need nesting and can be root level again to reduce
conflicts with other PRs.

Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
2025-06-23 16:20:26 -05:00

69 lines
1.4 KiB
Nix

{
config,
lib,
pkgs,
...
}:
let
inherit (lib) mkOption types;
cfg = config.services.clipmenu;
in
{
meta.maintainers = [ lib.maintainers.DamienCassou ];
options.services.clipmenu = {
enable = lib.mkEnableOption "clipmenu, the clipboard management daemon";
package = lib.mkPackageOption pkgs "clipmenu" { };
launcher = mkOption {
type = types.nullOr types.str;
default = null;
example = "rofi";
description = ''
Launcher command, if not set, {command}`dmenu`
will be used by default.
'';
};
};
config = lib.mkIf cfg.enable {
assertions = [
(lib.hm.assertions.assertPlatform "services.clipmenu" pkgs lib.platforms.linux)
];
home.packages = [ cfg.package ];
home.sessionVariables = lib.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=${
lib.makeBinPath (
with pkgs;
[
coreutils
findutils
gnugrep
gnused
systemd
]
)
}"
];
};
Install = {
WantedBy = [ "graphical-session.target" ];
};
};
};
}