{ lib, config, pkgs, ... }: let isEnabled = config.azos.nextcloud-client.enable; in { options.azos.nextcloud-client.enable = lib.mkOption { default = true; example = true; type = lib.types.bool; }; config = lib.mkIf isEnabled { home.packages = with pkgs; [ nextcloud-client ]; services.nextcloud-client = { enable = true; startInBackground = false; }; }; }