about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorschnusch <schnusch@users.noreply.github.com>2023-12-13 11:50:27 +0100
committerschnusch <schnusch@users.noreply.github.com>2023-12-13 11:50:27 +0100
commit1cf853b9dee78197b0451a06d44a58aa7857c75f (patch)
treebaad0ed24d973cebe48d47a5eef4e4698b43eef3 /nixos
parent249198f27e1c958cfdcb1bea5529a86320ba7dbb (diff)
nixos/tinyproxy: fix services.tinyproxy.package
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/networking/tinyproxy.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/tinyproxy.nix b/nixos/modules/services/networking/tinyproxy.nix
index 42d45c460c2e7..8ff12b52f10ca 100644
--- a/nixos/modules/services/networking/tinyproxy.nix
+++ b/nixos/modules/services/networking/tinyproxy.nix
@@ -85,7 +85,7 @@ in
         User = "tinyproxy";
         Group = "tinyproxy";
         Type = "simple";
-        ExecStart = "${getExe pkgs.tinyproxy} -d -c ${configFile}";
+        ExecStart = "${getExe cfg.package} -d -c ${configFile}";
         ExecReload = "${pkgs.coreutils}/bin/kill -SIGHUP $MAINPID";
         KillSignal = "SIGINT";
         TimeoutStopSec = "30s";