nixin-web/components/nix-code/nextcloud.vue
Fabrice Bellamy dea94a8bc8
All checks were successful
deploy to prod / Build and deploy site (push) Successful in 49s
feat: harmonize pre inr code templates
2024-10-15 10:45:44 +02:00

16 lines
348 B
Vue

<template>
<pre>
services.nextcloud = {
enable = true;
hostName = "nextcloud.tld";
database.createLocally = true;
config = {
dbtype = "pgsql";
adminpassFile = "/path/to/admin-pass-file";
};
};
networking.firewall.allowedTCPPorts = [ 80 443 ];
</pre>
</template>