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