style: reformat with nixfmt-rfc-style
This commit is contained in:
parent
5ad8bc1d56
commit
1c5d83d81e
99 changed files with 2247 additions and 1334 deletions
|
@ -1,7 +1,9 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
let host = "cloud.felschr.com";
|
||||
in {
|
||||
let
|
||||
host = "cloud.felschr.com";
|
||||
in
|
||||
{
|
||||
age.secrets.nextcloud-admin = {
|
||||
file = ../secrets/nextcloud/admin.age;
|
||||
owner = "nextcloud";
|
||||
|
@ -31,10 +33,12 @@ in {
|
|||
services.postgresql = with config.services.nextcloud.config; {
|
||||
enable = true;
|
||||
ensureDatabases = [ dbname ];
|
||||
ensureUsers = [{
|
||||
name = dbuser;
|
||||
ensureDBOwnership = true;
|
||||
}];
|
||||
ensureUsers = [
|
||||
{
|
||||
name = dbuser;
|
||||
ensureDBOwnership = true;
|
||||
}
|
||||
];
|
||||
};
|
||||
|
||||
# ensure that postgres is running *before* running the setup
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue