diff options
author | Karel Kočí <cynerd@email.cz> | 2024-10-21 21:43:35 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2024-10-21 21:43:35 +0200 |
commit | 6943caae7dc22ef2999f475a0bdc3499ffa515e4 (patch) | |
tree | 0e1ca6eae66e68452e5fd95acd1b95e11be1b77b /nixos/configurations | |
parent | 75cdfdbf7848438c8801b5193e4b9333e35a6168 (diff) | |
download | nixos-personal-6943caae7dc22ef2999f475a0bdc3499ffa515e4.tar.gz nixos-personal-6943caae7dc22ef2999f475a0bdc3499ffa515e4.tar.bz2 nixos-personal-6943caae7dc22ef2999f475a0bdc3499ffa515e4.zip |
nixos/lipwig: update nextcloud to 29
Diffstat (limited to 'nixos/configurations')
-rw-r--r-- | nixos/configurations/lipwig.nix | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/nixos/configurations/lipwig.nix b/nixos/configurations/lipwig.nix index ce34115..7476ab6 100644 --- a/nixos/configurations/lipwig.nix +++ b/nixos/configurations/lipwig.nix @@ -198,7 +198,7 @@ # Nextcloud ################################################################ services.nextcloud = { enable = true; - package = pkgs.nextcloud28; + package = pkgs.nextcloud29; https = true; hostName = "cloud.cynerd.cz"; datadir = "/nas/nextcloud"; @@ -240,20 +240,20 @@ twofactor_webauthn ; # Additional modules can be fetched with: - # NEXTCLOUD_VERSIONS=28 nix run nixpkgs#nc4nix -- -apps "passwords,money,integration_github,integration_gitlab" + # NEXTCLOUD_VERSIONS=29 nix run nixpkgs#nc4nix -- -apps "passwords,money,integration_github,integration_gitlab" passwords = pkgs.fetchNextcloudApp { url = "https://git.mdns.eu/api/v4/projects/45/packages/generic/passwords/2024.9.0/passwords.tar.gz"; sha256 = "L+jumcussL0c9xNMg/GMs1GSd1IY9wUvC8ZEg+3U+sc="; license = "agpl3Plus"; }; integration_github = pkgs.fetchNextcloudApp { - url = "https://github.com/nextcloud-releases/integration_github/releases/download/v2.0.7/integration_github-v2.0.7.tar.gz"; - sha256 = "x4BrBdrvmbdwZcZL6FLAY27B5OpkXIsw92XsD076Aqg="; + url = "https://github.com/nextcloud-releases/integration_github/releases/download/v3.0.0/integration_github-v3.0.0.tar.gz"; + sha256 = "ruLN4lw3Vy8OavTYm1g2L9q1wusRP0a+BpvfXkrZI3A="; license = "agpl3Plus"; }; integration_gitlab = pkgs.fetchNextcloudApp { - url = "https://github.com/nextcloud-releases/integration_gitlab/releases/download/v3.1.1/integration_gitlab-v3.1.1.tar.gz"; - sha256 = "nBqnBDVoNEqRGp+WKq4okis1kCr6pzEz4G6368MaxuE="; + url = "https://github.com/nextcloud-releases/integration_gitlab/releases/download/v3.1.2/integration_gitlab-v3.1.2.tar.gz"; + sha256 = "nCH0DqYmr4T856sOU5PhSK6WAHIF9mnYThgytxEbkNA="; license = "agpl3Plus"; }; money = pkgs.fetchNextcloudApp { |