From 1e2d3f3b5f7c67d3462355fa81d408bbdad63cd7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edward=20Tj=C3=B6rnhammar?= Date: Mon, 3 Aug 2015 22:27:43 +0200 Subject: [PATCH] nixos: gitit service, use list of strings for plugins --- nixos/modules/services/misc/gitit.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nixos/modules/services/misc/gitit.nix b/nixos/modules/services/misc/gitit.nix index 83186f63c2c9..b23bbaef5f7e 100644 --- a/nixos/modules/services/misc/gitit.nix +++ b/nixos/modules/services/misc/gitit.nix @@ -290,7 +290,7 @@ let }; plugins = mkOption { - type = types.path; + type = with types; listOf str; description = '' Specifies a list of plugins to load. Plugins may be specified either by their path or by their module name. If the plugin name starts @@ -565,7 +565,7 @@ video/x-ms-wmx wmx no-edit: ${cfg.noEdit} default-summary: ${cfg.defaultSummary} table-of-contents: ${toYesNo cfg.tableOfContents} - plugins: ${cfg.plugins} + plugins: ${concatStringsSep "," cfg.plugins} use-cache: ${toYesNo cfg.useCache} cache-dir: ${cfg.cacheDir} max-upload-size: ${cfg.maxUploadSize} @@ -604,7 +604,7 @@ in haskellPackages = mkDefault pkgs.haskellPackages; staticDir = gititShared + "/data/static"; templatesDir = gititShared + "/data/templates"; - plugins = gititShared + "/plugins/Dot.hs"; + plugins = [ ]; }; users.extraUsers.gitit = {