feat: update to nextcloud 30.0.2
This commit is contained in:
@@ -39,6 +39,8 @@ in {
|
|||||||
|
|
||||||
fonts.packages = with pkgs; [
|
fonts.packages = with pkgs; [
|
||||||
open-sans
|
open-sans
|
||||||
|
nix-prefetch
|
||||||
|
jq
|
||||||
];
|
];
|
||||||
|
|
||||||
swapDevices = [ {
|
swapDevices = [ {
|
||||||
|
|||||||
@@ -1,4 +1,12 @@
|
|||||||
{ pkgs, config, ... }:
|
{ pkgs, config, ... }:
|
||||||
|
let
|
||||||
|
nextcloud30 = pkgs.nextcloud30.overrideAttrs (oldAttrs: {
|
||||||
|
src = pkgs.fetchurl {
|
||||||
|
url = "https://download.nextcloud.com/server/releases/nextcloud-30.0.2.tar.bz2";
|
||||||
|
sha256 = "sha256-kpu4BF6WIW/iKmXc1mJ55b17oauynZm/QB1CO2RqRF8=";
|
||||||
|
};
|
||||||
|
});
|
||||||
|
in
|
||||||
{
|
{
|
||||||
sops.secrets.nextcloud-adminpass.owner = "nextcloud";
|
sops.secrets.nextcloud-adminpass.owner = "nextcloud";
|
||||||
sops.secrets.nextcloud-secrets.owner = "nextcloud";
|
sops.secrets.nextcloud-secrets.owner = "nextcloud";
|
||||||
@@ -8,7 +16,7 @@
|
|||||||
enable = true;
|
enable = true;
|
||||||
hostName = "nextcloud.cloonar.com";
|
hostName = "nextcloud.cloonar.com";
|
||||||
https = true;
|
https = true;
|
||||||
package = pkgs.nextcloud30;
|
package = nextcloud30;
|
||||||
# Instead of using pkgs.nextcloud27Packages.apps,
|
# Instead of using pkgs.nextcloud27Packages.apps,
|
||||||
# we'll reference the package version specified above
|
# we'll reference the package version specified above
|
||||||
extraApps = {
|
extraApps = {
|
||||||
|
|||||||
Reference in New Issue
Block a user