[pi4] Added notes to nextcloud

This commit is contained in:
2025-05-31 13:48:10 +00:00
parent fe01334a85
commit 969a1e75bf

View File

@ -1,3 +1,4 @@
# https://mich-murphy.com/configure-nextcloud-nixos/
{ pkgs, config, ... }: { pkgs, config, ... }:
let let
adminPass = "nextcloud/admin-pass"; adminPass = "nextcloud/admin-pass";
@ -26,8 +27,9 @@ in
extraApps = { extraApps = {
inherit (config.services.nextcloud.package.packages.apps) inherit (config.services.nextcloud.package.packages.apps)
contacts contacts
tasks
deck deck
notes
tasks
; ;
}; };
extraAppsEnable = true; extraAppsEnable = true;
@ -35,6 +37,7 @@ in
hostName = domain; hostName = domain;
https = true; https = true;
maxUploadSize = "0";
package = pkgs.nextcloud31; package = pkgs.nextcloud31;
settings = { settings = {
@ -43,6 +46,7 @@ in
]; ];
}; };
}; };
postgresql = { postgresql = {
enable = true; enable = true;
ensureDatabases = [ dbname ]; ensureDatabases = [ dbname ];