treewide: Use nixfmt for formatting

This commit is contained in:
Tristan Daniël Maat 2024-08-18 20:41:20 +02:00
parent 3a591863b0
commit 04f7a7ef1d
Signed by: tlater
GPG key ID: 49670FD774E43268
27 changed files with 496 additions and 466 deletions
configuration/services

View file

@ -1,7 +1,8 @@
{ pkgs
, config
, lib
, ...
{
pkgs,
config,
lib,
...
}:
let
# Update pending on rewrite of nextcloud news, though there is an
@ -15,8 +16,8 @@ in
inherit hostName;
package = nextcloud;
phpPackage = lib.mkForce
(pkgs.php.override {
phpPackage = lib.mkForce (
pkgs.php.override {
packageOverrides = final: prev: {
extensions = prev.extensions // {
pgsql = prev.extensions.pgsql.overrideAttrs (old: {
@ -27,7 +28,8 @@ in
});
};
};
});
}
);
enable = true;
maxUploadSize = "2G";
https = true;
@ -52,7 +54,14 @@ in
};
extraApps = {
inherit (pkgs.local) bookmarks calendar contacts cookbook news notes;
inherit (pkgs.local)
bookmarks
calendar
contacts
cookbook
news
notes
;
};
};