mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 04:35:41 +03:00
treewide: Format all Nix files
Format all Nix files using the officially approved formatter,
making the CI check introduced in the previous commit succeed:
nix-build ci -A fmt.check
This is the next step of the of the [implementation](https://github.com/NixOS/nixfmt/issues/153)
of the accepted [RFC 166](https://github.com/NixOS/rfcs/pull/166).
This commit will lead to merge conflicts for a number of PRs,
up to an estimated ~1100 (~33%) among the PRs with activity in the past 2
months, but that should be lower than what it would be without the previous
[partial treewide format](https://github.com/NixOS/nixpkgs/pull/322537).
Merge conflicts caused by this commit can now automatically be resolved while rebasing using the
[auto-rebase script](8616af08d9/maintainers/scripts/auto-rebase
).
If you run into any problems regarding any of this, please reach out to the
[formatting team](https://nixos.org/community/teams/formatting/) by
pinging @NixOS/nix-formatting.
This commit is contained in:
parent
2140bf39e4
commit
374e6bcc40
1523 changed files with 986047 additions and 513621 deletions
|
@ -15,7 +15,6 @@ let
|
|||
installPhase = "mkdir -p $out; cp -R * $out/";
|
||||
};
|
||||
|
||||
|
||||
plugin-icalevents = pkgs.stdenv.mkDerivation rec {
|
||||
name = "icalevents";
|
||||
version = "2017-06-16";
|
||||
|
@ -32,65 +31,78 @@ let
|
|||
'';
|
||||
|
||||
dwWithAcronyms = pkgs.dokuwiki.overrideAttrs (prev: {
|
||||
installPhase = prev.installPhase or "" + ''
|
||||
ln -sf ${acronymsFile} $out/share/dokuwiki/conf/acronyms.local.conf
|
||||
'';
|
||||
installPhase =
|
||||
prev.installPhase or ""
|
||||
+ ''
|
||||
ln -sf ${acronymsFile} $out/share/dokuwiki/conf/acronyms.local.conf
|
||||
'';
|
||||
});
|
||||
|
||||
mkNode = webserver: { ... }: {
|
||||
services.dokuwiki = {
|
||||
inherit webserver;
|
||||
mkNode =
|
||||
webserver:
|
||||
{ ... }:
|
||||
{
|
||||
services.dokuwiki = {
|
||||
inherit webserver;
|
||||
|
||||
sites = {
|
||||
"site1.local" = {
|
||||
templates = [ template-bootstrap3 ];
|
||||
settings = {
|
||||
useacl = false;
|
||||
userewrite = true;
|
||||
template = "bootstrap3";
|
||||
sites = {
|
||||
"site1.local" = {
|
||||
templates = [ template-bootstrap3 ];
|
||||
settings = {
|
||||
useacl = false;
|
||||
userewrite = true;
|
||||
template = "bootstrap3";
|
||||
};
|
||||
};
|
||||
};
|
||||
"site2.local" = {
|
||||
package = dwWithAcronyms;
|
||||
usersFile = "/var/lib/dokuwiki/site2.local/users.auth.php";
|
||||
plugins = [ plugin-icalevents ];
|
||||
settings = {
|
||||
useacl = true;
|
||||
superuser = "admin";
|
||||
title._file = titleFile;
|
||||
plugin.dummy.empty = "This is just for testing purposes";
|
||||
};
|
||||
acl = [
|
||||
{ page = "*";
|
||||
actor = "@ALL";
|
||||
level = "read"; }
|
||||
{ page = "acl-test";
|
||||
actor = "@ALL";
|
||||
level = "none"; }
|
||||
];
|
||||
pluginsConfig = {
|
||||
authad = false;
|
||||
authldap = false;
|
||||
authmysql = false;
|
||||
authpgsql = false;
|
||||
tag = false;
|
||||
icalevents = true;
|
||||
"site2.local" = {
|
||||
package = dwWithAcronyms;
|
||||
usersFile = "/var/lib/dokuwiki/site2.local/users.auth.php";
|
||||
plugins = [ plugin-icalevents ];
|
||||
settings = {
|
||||
useacl = true;
|
||||
superuser = "admin";
|
||||
title._file = titleFile;
|
||||
plugin.dummy.empty = "This is just for testing purposes";
|
||||
};
|
||||
acl = [
|
||||
{
|
||||
page = "*";
|
||||
actor = "@ALL";
|
||||
level = "read";
|
||||
}
|
||||
{
|
||||
page = "acl-test";
|
||||
actor = "@ALL";
|
||||
level = "none";
|
||||
}
|
||||
];
|
||||
pluginsConfig = {
|
||||
authad = false;
|
||||
authldap = false;
|
||||
authmysql = false;
|
||||
authpgsql = false;
|
||||
tag = false;
|
||||
icalevents = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
services.caddy.virtualHosts = {
|
||||
"site1.local".hostName = "http://site1.local";
|
||||
"site2.local".hostName = "http://site2.local";
|
||||
};
|
||||
services.caddy.virtualHosts = {
|
||||
"site1.local".hostName = "http://site1.local";
|
||||
"site2.local".hostName = "http://site2.local";
|
||||
};
|
||||
|
||||
networking.firewall.allowedTCPPorts = [ 80 ];
|
||||
networking.hosts."127.0.0.1" = [ "site1.local" "site2.local" ];
|
||||
};
|
||||
networking.firewall.allowedTCPPorts = [ 80 ];
|
||||
networking.hosts."127.0.0.1" = [
|
||||
"site1.local"
|
||||
"site2.local"
|
||||
];
|
||||
};
|
||||
|
||||
titleFile = pkgs.writeText "dokuwiki-title" "DokuWiki on site2";
|
||||
in {
|
||||
in
|
||||
{
|
||||
name = "dokuwiki";
|
||||
meta = with pkgs.lib; {
|
||||
maintainers = with maintainers; [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue