summary refs log tree commit diff
path: root/nixos/modules/services/web-apps/icingaweb2/icingaweb2.nix
diff options
context:
space:
mode:
authorJanne Heß <janne@hess.ooo>2019-07-07 03:03:59 +0200
committerJanne Heß <janne@hess.ooo>2019-07-07 03:03:59 +0200
commit9e2a8f50237d1c3def60aabea16d099bfdae576e (patch)
tree2bdf507ecb9e599016abf00bb3c282ae57917a89 /nixos/modules/services/web-apps/icingaweb2/icingaweb2.nix
parente295fd81370929a4268e94ba95d86f3f296d610c (diff)
downloadnixpkgs-9e2a8f50237d1c3def60aabea16d099bfdae576e.tar
nixpkgs-9e2a8f50237d1c3def60aabea16d099bfdae576e.tar.gz
nixpkgs-9e2a8f50237d1c3def60aabea16d099bfdae576e.tar.bz2
nixpkgs-9e2a8f50237d1c3def60aabea16d099bfdae576e.tar.lz
nixpkgs-9e2a8f50237d1c3def60aabea16d099bfdae576e.tar.xz
nixpkgs-9e2a8f50237d1c3def60aabea16d099bfdae576e.tar.zst
nixpkgs-9e2a8f50237d1c3def60aabea16d099bfdae576e.zip
nixos/icingaweb: Fix module path; Add test
Diffstat (limited to 'nixos/modules/services/web-apps/icingaweb2/icingaweb2.nix')
-rw-r--r--nixos/modules/services/web-apps/icingaweb2/icingaweb2.nix4
1 files changed, 3 insertions, 1 deletions
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";