summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2026-02-08 22:51:02 -0600
committerAlejandro Soto <alejandro@34project.org>2026-02-08 22:51:02 -0600
commitdc1d778714f8ee47cc2980ae41dafb1d23d17c55 (patch)
treeb7df8a1bcd65eee771a92d348e2a4fe83c5e884d /modules
parent878a8a72db8421cf9f893866c79772a551e74614 (diff)
trivionomicon: mediawiki: formatting
Diffstat (limited to '')
-rw-r--r--modules/mediawiki/options.nix42
-rw-r--r--modules/mediawiki/sys.nix3
2 files changed, 23 insertions, 22 deletions
diff --git a/modules/mediawiki/options.nix b/modules/mediawiki/options.nix
index 3ab7894..bb39a14 100644
--- a/modules/mediawiki/options.nix
+++ b/modules/mediawiki/options.nix
@@ -12,22 +12,22 @@ with lib.types; {
description = "name of the wiki";
example = "posixlycorrect wiki";
};
-
+
passwordFile = lib.mkOption {
type = types.path;
description = "A file containing the initial password for the administrator account 'admin'";
example = "/run/keys/mediawiki-password";
};
-
+
skins = lib.mkOption {
type = types.attrsOf (types.nullOr str);
description = "skins for mediawiki";
default = {};
- example = ''{
- citizen = "flakes.mediawikiSkinCitizen";
- };'';
+ example = '' {
+ citizen = "flakes.mediawikiSkinCitizen";
+ };'';
};
-
+
extraConfig = lib.mkOption {
type = str;
default = "";
@@ -42,21 +42,21 @@ with lib.types; {
type = types.attrsOf (types.nullOr types.path);
description = "some extensions are included and can enabled by passing null";
default = {};
- example = ''{
- VisualEditor = null;
- CategoryTree = null;
- CiteThisPage = null;
- Scribunto = null;
- Cite = null;
- CodeEditor = null;
- Math = null;
- MultimediaViewer = null;
- PdfHandler = null;
- Poem = null;
- SecureLinkFixer = null;
- WikiEditor = null;
- ParserFunctions = null;
- };'';
+ example = '' {
+ VisualEditor = null;
+ CategoryTree = null;
+ CiteThisPage = null;
+ Scribunto = null;
+ Cite = null;
+ CodeEditor = null;
+ Math = null;
+ MultimediaViewer = null;
+ PdfHandler = null;
+ Poem = null;
+ SecureLinkFixer = null;
+ WikiEditor = null;
+ ParserFunctions = null;
+ };'';
};
};
}
diff --git a/modules/mediawiki/sys.nix b/modules/mediawiki/sys.nix
index 525ec3e..b6a9273 100644
--- a/modules/mediawiki/sys.nix
+++ b/modules/mediawiki/sys.nix
@@ -4,7 +4,8 @@
cfg,
doctrine,
...
-}: with lib; {
+}:
+with lib; {
services = {
nginx = {
virtualHosts.${cfg.hostName} = {