mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-10 16:45:51 +03:00
nixos/modules: add clipmenu user service
add a clipmenud daemon user service
This commit is contained in:
parent
fb130874fd
commit
6c1eb15a3b
@ -320,6 +320,7 @@
|
||||
./services/misc/canto-daemon.nix
|
||||
./services/misc/calibre-server.nix
|
||||
./services/misc/cfdyndns.nix
|
||||
./services/misc/clipmenu.nix
|
||||
./services/misc/cpuminer-cryptonight.nix
|
||||
./services/misc/cgminer.nix
|
||||
./services/misc/confd.nix
|
||||
|
31
nixos/modules/services/misc/clipmenu.nix
Normal file
31
nixos/modules/services/misc/clipmenu.nix
Normal file
@ -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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user