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

12 lines
206 B
Nix
Raw Normal View History

{ config, lib, ... }:
2024-12-10 21:40:33 +00:00
with lib;
{
2024-12-10 21:40:33 +00:00
options.features.desktop.copyq.enable = mkEnableOption "Enable copyq";
2024-12-10 21:40:33 +00:00
config = mkIf config.features.desktop.copyq.enable {
services.copyq.enable = true;
};
}