diff --git a/CHANGELOG.md b/CHANGELOG.md index 97d5524..b7adfdb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,10 @@ Template: - Add option to add extra args to hledger command. +## Breaking Changes + +- Default version of Nextcloud is now 29. + # v0.2.10 ## New Features diff --git a/modules/services/nextcloud-server.nix b/modules/services/nextcloud-server.nix index a716c88..a1c8d3a 100644 --- a/modules/services/nextcloud-server.nix +++ b/modules/services/nextcloud-server.nix @@ -71,8 +71,8 @@ in version = lib.mkOption { description = "Nextcloud version to choose from."; - type = lib.types.enum [ 28 29 ]; - default = 28; + type = lib.types.enum [ 29 30 ]; + default = 29; }; dataDir = lib.mkOption {