0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +03:00

nixos/icingaweb: Fix module path; Add test

This commit is contained in:
Janne Heß 2019-07-07 03:03:59 +02:00
parent e295fd8137
commit 9e2a8f5023
3 changed files with 75 additions and 1 deletions

View file

@ -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";