1
1
Fork 0
nixos/options/custom/services/clipmenu.nix
Myned 22609fe783
services: add disabled clipmenu
Signed-off-by: Myned <dev@bjork.tech>
2025-02-09 18:48:29 -06:00

21 lines
354 B
Nix

{
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;
}
];
};
}