nixpkgs/pkgs/servers/nextcloud/packages
Maximilian Bosch 6a0b0a5de9 nextcloud: remove compat references to v23
This is not needed anymore because the version is EOL for almost a year
now and we don't even have the packages anymore, only the attributes for
compatibility for upgrades from older NixOS versions.
2023-03-22 22:37:17 +01:00
..
24.json nextcloud24Packages: update at various 2023-03-21 16:49:27 +01:00
25.json nextcloud25Packages: update at various 2023-03-21 16:49:19 +01:00
26.json nextcloud26Packages: init at various 2023-03-21 16:49:10 +01:00
default.nix
generate.sh
nc-versions.nix
nextcloud-apps.json nextcloudPackages.notify_push: init 2023-02-21 15:05:16 +01:00
README.md

= Adding apps =

To extend the nextcloudPackages set, add a new line to the corresponding json file with the id of the app:

  • nextcloud-apps.json for apps

The app must be available in the official Nextcloud app store. https://apps.nextcloud.com. The id corresponds to the last part in the app url, for example breezedark for the app with the url https://apps.nextcloud.com/apps/breezedark.

To regenerate the nixpkgs nextcloudPackages set, run:

./generate.sh

After that you can commit and submit the changes.

= Usage with the Nextcloud module =

The apps will be available in the namespace nextcloud25Packages.apps. Using it together with the Nextcloud module could look like this:

services.nextcloud = {
  enable = true;
  package = pkgs.nextcloud25;
  hostName = "localhost";
  config.adminpassFile = "${pkgs.writeText "adminpass" "hunter2"}";
  extraApps = with pkgs.nextcloud25Packages.apps; [
    mail
    calendar
    contacts
  ];
  extraAppsEnable = true;
};

Adapt the version number in the Nextcloud package and nextcloudPackages set according to the Nextcloud version you wish to use. There are several supported stable Nextcloud versions available in the repository.