From 9e2a8f50237d1c3def60aabea16d099bfdae576e Mon Sep 17 00:00:00 2001 From: Janne Heß Date: Sun, 7 Jul 2019 03:03:59 +0200 Subject: nixos/icingaweb: Fix module path; Add test --- nixos/modules/services/web-apps/icingaweb2/icingaweb2.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'nixos/modules/services/web-apps/icingaweb2') diff --git a/nixos/modules/services/web-apps/icingaweb2/icingaweb2.nix b/nixos/modules/services/web-apps/icingaweb2/icingaweb2.nix index e83270fda5c..bbed2e12c59 100644 --- a/nixos/modules/services/web-apps/icingaweb2/icingaweb2.nix +++ b/nixos/modules/services/web-apps/icingaweb2/icingaweb2.nix @@ -4,10 +4,12 @@ defaultConfig = { global = { - module_path = "${pkgs.icingaweb2}/modules${optionalString (builtins.length config.modulePath > 0) ":${concatStringsSep ":" config.modulePath}"}"; + module_path = "${pkgs.icingaweb2}/modules"; }; }; in { + meta.maintainers = with maintainers; [ das_j ]; + options.services.icingaweb2 = with types; { enable = mkEnableOption "the icingaweb2 web interface"; -- cgit 1.4.1