nixos/uptime-kuma: add ping in path (#212001)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

authored by

Julien Malka
Sandro
and committed by
GitHub
808663bd 29c45e86

+1 -1
+1 -1
nixos/modules/services/monitoring/uptime-kuma.nix
··· 50 after = [ "network.target" ]; 51 wantedBy = [ "multi-user.target" ]; 52 environment = cfg.settings; 53 - path = lib.mkIf cfg.appriseSupport (with pkgs; [ apprise ]); 54 serviceConfig = { 55 Type = "simple"; 56 StateDirectory = "uptime-kuma";
··· 50 after = [ "network.target" ]; 51 wantedBy = [ "multi-user.target" ]; 52 environment = cfg.settings; 53 + path = with pkgs; [ unixtools.ping ] ++ lib.optional cfg.appriseSupport apprise; 54 serviceConfig = { 55 Type = "simple"; 56 StateDirectory = "uptime-kuma";