about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorc0bw3b <c0bw3b@users.noreply.github.com>2018-11-24 23:07:30 +0100
committerc0bw3b <c0bw3b@users.noreply.github.com>2018-11-24 23:07:30 +0100
commit434eab99557a24e24467f612453ed990cf66e6de (patch)
tree4f0ba8e20216b52a6db0019e9c0bd95add2066cf /nixos
parent2ea29c63afe73f769f8b09af0d3ad65d19078453 (diff)
downloadnixlib-434eab99557a24e24467f612453ed990cf66e6de.tar
nixlib-434eab99557a24e24467f612453ed990cf66e6de.tar.gz
nixlib-434eab99557a24e24467f612453ed990cf66e6de.tar.bz2
nixlib-434eab99557a24e24467f612453ed990cf66e6de.tar.lz
nixlib-434eab99557a24e24467f612453ed990cf66e6de.tar.xz
nixlib-434eab99557a24e24467f612453ed990cf66e6de.tar.zst
nixlib-434eab99557a24e24467f612453ed990cf66e6de.zip
nixos/systemhealth: fix url and use https
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/monitoring/systemhealth.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/monitoring/systemhealth.nix b/nixos/modules/services/monitoring/systemhealth.nix
index 20d1dadd3bf2..32d4314d5f77 100644
--- a/nixos/modules/services/monitoring/systemhealth.nix
+++ b/nixos/modules/services/monitoring/systemhealth.nix
@@ -8,7 +8,7 @@ let
   systemhealth = with pkgs; stdenv.mkDerivation {
     name = "systemhealth-1.0";
     src = fetchurl {
-      url = "http://www.brianlane.com/static/downloads/systemhealth/systemhealth-1.0.tar.bz2";
+      url = "https://www.brianlane.com/downloads/systemhealth/systemhealth-1.0.tar.bz2";
       sha256 = "1q69lz7hmpbdpbz36zb06nzfkj651413n9icx0njmyr3xzq1j9qy";
     };
     buildInputs = [ python ];