services: add disabled clipmenu
Signed-off-by: Myned <dev@bjork.tech>
This commit is contained in:
parent
94892bcb60
commit
22609fe783
2 changed files with 22 additions and 0 deletions
21
options/custom/services/clipmenu.nix
Normal file
21
options/custom/services/clipmenu.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
with lib; let
|
||||
cfg = config.custom.services.clipmenu;
|
||||
in {
|
||||
options.custom.services.clipmenu = {
|
||||
enable = mkOption {default = false;};
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
home-manager.sharedModules = [
|
||||
{
|
||||
# https://github.com/cdown/clipmenu
|
||||
services.clipmenu.enable = true;
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
|
@ -34,6 +34,7 @@ with lib; {
|
|||
#// blueman-applet.enable = true;
|
||||
#// clipcat.enable = true;
|
||||
#// cliphist.enable = true;
|
||||
#// clipmenu.enable = true;
|
||||
easyeffects.enable = true;
|
||||
gammastep.enable = true;
|
||||
gnome-keyring.enable = true;
|
||||
|
|
Loading…
Add table
Reference in a new issue