summary refs log tree commit diff
path: root/nixos/modules/services
diff options
context:
space:
mode:
authorlassulus <lass@lassul.us>2016-12-27 17:26:56 +0100
committerJörg Thalheim <joerg@higgsboson.tk>2016-12-27 19:38:18 +0100
commitcfbe501d4ecb6173be204e68a0d7b5e8f52086e8 (patch)
tree3ee9cde23fde391860deedd1cb994bfceeee41ae /nixos/modules/services
parentdf5f88070e239a23d26055c138c1efb0706e0b4e (diff)
downloadnixlib-cfbe501d4ecb6173be204e68a0d7b5e8f52086e8.tar
nixlib-cfbe501d4ecb6173be204e68a0d7b5e8f52086e8.tar.gz
nixlib-cfbe501d4ecb6173be204e68a0d7b5e8f52086e8.tar.bz2
nixlib-cfbe501d4ecb6173be204e68a0d7b5e8f52086e8.tar.lz
nixlib-cfbe501d4ecb6173be204e68a0d7b5e8f52086e8.tar.xz
nixlib-cfbe501d4ecb6173be204e68a0d7b5e8f52086e8.tar.zst
nixlib-cfbe501d4ecb6173be204e68a0d7b5e8f52086e8.zip
nixos/graphite: fix beacon config parameter
Diffstat (limited to 'nixos/modules/services')
-rw-r--r--nixos/modules/services/monitoring/graphite.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/monitoring/graphite.nix b/nixos/modules/services/monitoring/graphite.nix
index b8be9296bc97..c5352e5887da 100644
--- a/nixos/modules/services/monitoring/graphite.nix
+++ b/nixos/modules/services/monitoring/graphite.nix
@@ -585,7 +585,7 @@ in {
         serviceConfig = {
           ExecStart = ''
             ${pkgs.pythonPackages.graphite_beacon}/bin/graphite-beacon \
-              --config ${pkgs.writeText "graphite-beacon.json" (builtins.toJSON cfg.beacon.config)}
+              --config=${pkgs.writeText "graphite-beacon.json" (builtins.toJSON cfg.beacon.config)}
           '';
           User = "graphite";
           Group = "graphite";