default version of nextcloud is now 29

This commit is contained in:
ibizaman 2025-03-17 22:54:10 +01:00 committed by Pierre Penninckx
parent 43ad3d0f84
commit e3a03c5df6
2 changed files with 6 additions and 2 deletions

View file

@ -20,6 +20,10 @@ Template:
- Add option to add extra args to hledger command. - Add option to add extra args to hledger command.
## Breaking Changes
- Default version of Nextcloud is now 29.
# v0.2.10 # v0.2.10
## New Features ## New Features

View file

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