remove unsupported nextcloud version

This commit is contained in:
ibizaman 2025-06-24 10:49:56 +02:00 committed by Pierre Penninckx
parent 9be67e1c57
commit 4fbdff8b6d
2 changed files with 6 additions and 2 deletions

View file

@ -16,6 +16,10 @@ Template:
# Upcoming Release
## Breaking Changes
- Default version of Nextcloud is now 30.
## New Features
- Add patchNixpkgs function and pre-patched patchedNixpkgs output.

View file

@ -71,8 +71,8 @@ in
version = lib.mkOption {
description = "Nextcloud version to choose from.";
type = lib.types.enum [ 29 30 ];
default = 29;
type = lib.types.enum [ 30 31 ];
default = 30;
};
dataDir = lib.mkOption {