nixos/spec/focus/nextcloud.nix

60 lines
1.5 KiB
Nix
Raw Normal View History

2025-01-13 11:52:09 +08:00
{
pkgs,
...
}:
let
2024-01-27 09:56:24 +08:00
host = "cloud.sf.514fpv.io";
2025-01-13 11:52:09 +08:00
in
{
2024-01-27 09:56:24 +08:00
services.nextcloud = {
enable = true;
2025-03-18 15:50:01 +08:00
package = pkgs.nextcloud31;
2024-01-27 09:56:24 +08:00
extraApps = {
2025-03-18 15:50:01 +08:00
inherit (pkgs.nextcloud31Packages.apps)
2025-01-13 11:52:09 +08:00
notify_push
impersonate
spreed
contacts
bookmarks
deck
polls
notes
forms
twofactor_webauthn
;
2024-01-27 09:56:24 +08:00
};
home = "/nix/persist/service/nextcloud";
configureRedis = true;
webfinger = true;
maxUploadSize = "128G";
fastcgiTimeout = 300;
2024-01-27 09:56:24 +08:00
hostName = host;
phpExtraExtensions = all: with all; [ bz2 ];
database.createLocally = true;
config.dbtype = "pgsql";
config.adminuser = "koishi";
config.adminpassFile = builtins.toString (pkgs.writeText "password" "initial_password");
2024-02-03 22:29:38 +08:00
settings.overwriteprotocol = "https";
settings.maintenance_window_start = 17;
2024-02-03 22:29:38 +08:00
settings.default_phone_region = "US";
settings.default_language = "zh";
settings.default_locale = "zh_Hans_CN";
2024-01-27 09:56:24 +08:00
caching.redis = true;
phpOptions.upload_max_filesize = "128G";
phpOptions.post_max_size = "128G";
phpOptions.output_buffering = "0";
phpOptions."opcache.interned_strings_buffer" = "32";
https = true;
};
users.users.nextcloud.uid = 1022;
users.groups.nextcloud.gid = 1022;
services.nginx.virtualHosts.${host} = {
useACMEHost = ".sf.514fpv.io";
addSSL = true;
};
global.fs.zfs.mountpoints."/nix/persist/service/nextcloud" = "service/nextcloud";
}