diff --git a/os/ks/configuration.nix b/os/ks/configuration.nix index 2b12aa5..936f80b 100644 --- a/os/ks/configuration.nix +++ b/os/ks/configuration.nix @@ -169,6 +169,20 @@ in { }; }; + services.nextcloud = { + enable = true; + package = pkgs.nextcloud30; + hostName = "nextcloud.antoinevaure.fr"; + https = true; + config = { + adminpassFile = "/nextcloud_root_pass"; + dbtype = "sqlite"; + }; + settings = { "filesystem_check_changes" = "1"; }; + phpExtraExtensions = all: [ all.pdlib ]; + configureRedis = true; # caching + }; + system.stateVersion = "23.11"; }