Nix fmt rfc style (more or less)

This commit is contained in:
Filippo Berto 2024-08-13 12:22:23 +02:00
parent e7496c447a
commit 515f098644
No known key found for this signature in database
GPG key ID: FE98AE5EC52B1056
146 changed files with 2607 additions and 906 deletions

View file

@ -5,8 +5,14 @@ in
{
age.secrets = {
nextcloud_admin_secret = { file = ../../secrets/nextcloud_admin_secret.age; owner = "nextcloud"; };
nextcloud_bucket_secret = { file = ../../secrets/nextcloud_bucket_secret.age; owner = "nextcloud"; };
nextcloud_admin_secret = {
file = ../../secrets/nextcloud_admin_secret.age;
owner = "nextcloud";
};
nextcloud_bucket_secret = {
file = ../../secrets/nextcloud_bucket_secret.age;
owner = "nextcloud";
};
};
# services.nginx.virtualHosts.${config.services.nextcloud.hostName} = {
@ -24,7 +30,17 @@ in
database.createLocally = true;
extraApps = { inherit (config.services.nextcloud.package.packages.apps) contacts calendar notes maps memories tasks richdocuments; };
extraApps = {
inherit (config.services.nextcloud.package.packages.apps)
contacts
calendar
notes
maps
memories
tasks
richdocuments
;
};
appstoreEnable = true;
autoUpdateApps.enable = true;
settings = {
@ -51,9 +67,7 @@ in
# "baldur.zto"
"baldur.tsn"
];
trusted_domains = [
"heimdall.tsn"
];
trusted_domains = [ "heimdall.tsn" ];
# overwriteprotocol = "http";
};
config = {