nixos/modules: add clipmenu user service
add a clipmenud daemon user service
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
let
|
||||
cfg = config.services.clipmenu;
|
||||
in {
|
||||
|
||||
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.";
|
||||
};
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
systemd.user.services.clipmenu = {
|
||||
enable = true;
|
||||
description = "Clipboard management daemon";
|
||||
wantedBy = [ "graphical-session.target" ];
|
||||
after = [ "graphical-session.target" ];
|
||||
serviceConfig.ExecStart = "${cfg.package}/bin/clipmenud";
|
||||
};
|
||||
|
||||
environment.systemPackages = [ cfg.package ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user