Merge pull request #64407 from dasJ/icingaweb-test

nixos/icingaweb: Fix module path; Add test
This commit is contained in:
Marek Mahut
2019-08-19 21:27:16 +02:00
committed by GitHub
3 changed files with 75 additions and 1 deletions
@@ -5,10 +5,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";