dotfiles/nix/modules/home-manager/features/desktop/copyq.nix

10 lines
203 B
Nix

{ config, lib, ... }:
{
options.features.desktop.copyq.enable = lib.mkEnableOption "Enable copyq";
config = lib.mkIf config.features.desktop.copyq.enable {
services.copyq.enable = true;
};
}