10 lines
203 B
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;
|
|
};
|
|
}
|