1 import ./make-test-python.nix ({ pkgs, ... }: {
3 meta = with pkgs.lib.maintainers; {
4 maintainers = [ das_j ];
8 icingaweb2 = { config, pkgs, ... }: {
9 services.icingaweb2 = {
12 modulePackages = with pkgs.icingaweb2Modules; {
13 particles = theme-particles;
14 spring = theme-spring;
19 migrate.enable = true;
22 translation.enable = true;
27 module_path = "${pkgs.icingaweb2}/modules";
40 resource = "icingaweb_db";
45 # Not used, so no DB server needed
50 username = "icingaweb2";
51 password = "icingaweb2";
52 dbname = "icingaweb2";
68 icingaweb2.wait_for_unit("multi-user.target")
69 icingaweb2.succeed("curl -sSf http://icingaweb2/authentication/login")