summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorJonas Heinrich <onny@project-insanity.org>2021-09-30 20:12:07 +0200
committerRaphael Megzari <raphael@megzari.com>2021-11-02 09:23:06 +0900
commit50029ed89ce5e38f0b893689762c7ead26c2f678 (patch)
treeb24bf387b8aa4076288bc6787dcf69fcaca83b0f /nixos/modules
parent550dab224a26ec25e20e82c0c8bfc764e01b772e (diff)
downloadnixpkgs-50029ed89ce5e38f0b893689762c7ead26c2f678.tar
nixpkgs-50029ed89ce5e38f0b893689762c7ead26c2f678.tar.gz
nixpkgs-50029ed89ce5e38f0b893689762c7ead26c2f678.tar.bz2
nixpkgs-50029ed89ce5e38f0b893689762c7ead26c2f678.tar.lz
nixpkgs-50029ed89ce5e38f0b893689762c7ead26c2f678.tar.xz
nixpkgs-50029ed89ce5e38f0b893689762c7ead26c2f678.tar.zst
nixpkgs-50029ed89ce5e38f0b893689762c7ead26c2f678.zip
nixos/dokuwiki: add missing option enable
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/services/web-apps/dokuwiki.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/nixos/modules/services/web-apps/dokuwiki.nix b/nixos/modules/services/web-apps/dokuwiki.nix
index bc5b1a8be54..fc0e23729b3 100644
--- a/nixos/modules/services/web-apps/dokuwiki.nix
+++ b/nixos/modules/services/web-apps/dokuwiki.nix
@@ -66,6 +66,8 @@ let
   siteOpts = { config, lib, name, ... }:
     {
       options = {
+        enable = mkEnableOption "DokuWiki web application.";
+
         package = mkOption {
           type = types.package;
           default = pkgs.dokuwiki;