[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, ... }:
let
adminPass = "nextcloud/admin-pass";
@ -26,8 +27,9 @@ in
extraApps = {
inherit (config.services.nextcloud.package.packages.apps)
contacts
tasks
deck
notes
tasks
;
};
extraAppsEnable = true;
@ -35,6 +37,7 @@ in
hostName = domain;
https = true;
maxUploadSize = "0";
package = pkgs.nextcloud31;
settings = {
@ -43,6 +46,7 @@ in
];
};
};
postgresql = {
enable = true;
ensureDatabases = [ dbname ];