From 037a3c0f1030853d9ca27bedc50d68d940fc3186 Mon Sep 17 00:00:00 2001 From: Leonhard Kost Date: Mon, 9 Feb 2026 13:17:58 +0100 Subject: [PATCH] fix(dyndns): correct path to python3 binary --- nixos/server/dyndns.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/server/dyndns.nix b/nixos/server/dyndns.nix index 94b770a..96b5fe3 100644 --- a/nixos/server/dyndns.nix +++ b/nixos/server/dyndns.nix @@ -26,7 +26,7 @@ NC_API_PASSWORD=${"$(cat " + config.age.secrets.nc_api_password.path + ")"} NC_API_KEY=${"$(cat " + config.age.secrets.nc_api_key.path + ")"} NC_DOMAIN=${"$(cat " + config.age.secrets.nc_domain.path + ")"} - python3 -c "${builtins.readFile ./dyndns.py}" + ${pkgs.python313}/bin/python3 -c "${builtins.readFile ./dyndns.py}" ''; serviceConfig = { Type = "oneshot";