feat: nextcloud test

This commit is contained in:
Nick 2024-10-18 11:55:43 -05:00
parent 0c1e4e962f
commit 77c9f4825e

View file

@ -103,17 +103,17 @@ in {
); );
}; };
fileSystems."/var/lib/${nextcloud.name}" = { # fileSystems."/var/lib/${nextcloud.name}" = {
device = nextcloud.paths.path0; # device = nextcloud.paths.path0;
fsType = "none"; # fsType = "none";
options = ["bind"]; # options = ["bind"];
depends = [server.storage0.mount]; # depends = [server.storage0.mount];
}; # };
systemd.tmpfiles.rules = [ # systemd.tmpfiles.rules = [
"Z ${nextcloud.paths.path0} 750 ${nextcloud.name} ${nextcloud.name} -" # "Z ${nextcloud.paths.path0} 750 ${nextcloud.name} ${nextcloud.name} -"
# "Z ${nextcloud.sops.path0} 750 ${nextcloud.name} ${nextcloud.name} -" # "Z ${nextcloud.sops.path0} 750 ${nextcloud.name} ${nextcloud.name} -"
]; # ];
users.users.${nextcloud.name}.extraGroups = ["caddy" "nginx" "postgres"]; users.users.${nextcloud.name}.extraGroups = ["caddy" "nginx" "postgres"];