summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorvolth <volth@webmaster.ms>2018-02-23 03:26:18 +0000
committerGitHub <noreply@github.com>2018-02-23 03:26:18 +0000
commit985a4bb87cdb93f7c044fd1062e213fcc587ac43 (patch)
tree3aa8b0598c4bda07bb3430566f26c40273cda7a8 /nixos
parent5e21e5360ec40f42f3b63a16e55100775fc8c829 (diff)
downloadnixpkgs-985a4bb87cdb93f7c044fd1062e213fcc587ac43.tar
nixpkgs-985a4bb87cdb93f7c044fd1062e213fcc587ac43.tar.gz
nixpkgs-985a4bb87cdb93f7c044fd1062e213fcc587ac43.tar.bz2
nixpkgs-985a4bb87cdb93f7c044fd1062e213fcc587ac43.tar.lz
nixpkgs-985a4bb87cdb93f7c044fd1062e213fcc587ac43.tar.xz
nixpkgs-985a4bb87cdb93f7c044fd1062e213fcc587ac43.tar.zst
nixpkgs-985a4bb87cdb93f7c044fd1062e213fcc587ac43.zip
nixos/tox-bootstrapd: new command line format
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/networking/tox-bootstrapd.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/tox-bootstrapd.nix b/nixos/modules/services/networking/tox-bootstrapd.nix
index c1f945773e2..cb0e6b15865 100644
--- a/nixos/modules/services/networking/tox-bootstrapd.nix
+++ b/nixos/modules/services/networking/tox-bootstrapd.nix
@@ -69,7 +69,7 @@ in
       after = [ "network.target" ];
       wantedBy = [ "multi-user.target" ];
       serviceConfig =
-        { ExecStart = "${pkg}/bin/tox-bootstrapd ${cfgFile}";
+        { ExecStart = "${pkg}/bin/tox-bootstrapd --config=${cfgFile}";
           Type = "forking";
           inherit PIDFile;
           User = "tox-bootstrapd";