summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorRobert Schütz <dev@schuetz-co.de>2021-02-06 11:36:59 +0100
committerRobert Schütz <dev@schuetz-co.de>2021-02-28 12:25:47 +0100
commit3fcd9361b5bfe9ec5cf1a07036e1c2127bb81492 (patch)
tree293836250cac17a5ab812bbb3fd00b21a91f4968 /nixos/modules
parentd0328678e91b1bb89d6a184c63bc3f21f81dbfe2 (diff)
downloadnixpkgs-3fcd9361b5bfe9ec5cf1a07036e1c2127bb81492.tar
nixpkgs-3fcd9361b5bfe9ec5cf1a07036e1c2127bb81492.tar.gz
nixpkgs-3fcd9361b5bfe9ec5cf1a07036e1c2127bb81492.tar.bz2
nixpkgs-3fcd9361b5bfe9ec5cf1a07036e1c2127bb81492.tar.lz
nixpkgs-3fcd9361b5bfe9ec5cf1a07036e1c2127bb81492.tar.xz
nixpkgs-3fcd9361b5bfe9ec5cf1a07036e1c2127bb81492.tar.zst
nixpkgs-3fcd9361b5bfe9ec5cf1a07036e1c2127bb81492.zip
alerta-server: move to all-packages.nix and use buildPythonApplication
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/services/monitoring/alerta.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/monitoring/alerta.nix b/nixos/modules/services/monitoring/alerta.nix
index 34f2d41706a..5bbc9ba1e84 100644
--- a/nixos/modules/services/monitoring/alerta.nix
+++ b/nixos/modules/services/monitoring/alerta.nix
@@ -95,7 +95,7 @@ in
         ALERTA_SVR_CONF_FILE = alertaConf;
       };
       serviceConfig = {
-        ExecStart = "${pkgs.python36Packages.alerta-server}/bin/alertad run --port ${toString cfg.port} --host ${cfg.bind}";
+        ExecStart = "${pkgs.alerta-server}/bin/alertad run --port ${toString cfg.port} --host ${cfg.bind}";
         User = "alerta";
         Group = "alerta";
       };