Add nextcloud

This commit is contained in:
Aaron Honeycutt 2024-03-08 16:30:43 +00:00
parent 0ed8cb227d
commit f348eb946b

View file

@ -0,0 +1,15 @@
{ config, pkgs, lib, ... }:
{
environment.etc."nextcloud-admin-pass".text = "test123";
services.nextcloud = {
enable = true;
https = true;
package = pkgs.nextcloud28;
hostName = "localhost";
config = {
adminpassFile = "/etc/nextcloud-admin-pass";
};
settings.trusted_domains = [ "10.0.0.10*" ];
};
}