From 8b65d7046ebf86925fb83333b0ff2ca3d151eed1 Mon Sep 17 00:00:00 2001 From: Richie Cahill Date: Sun, 7 Jul 2024 20:36:07 -0400 Subject: [PATCH] converted paths to strings --- systems/jeeves/services.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/systems/jeeves/services.nix b/systems/jeeves/services.nix index 4ad6db7..74c0945 100644 --- a/systems/jeeves/services.nix +++ b/systems/jeeves/services.nix @@ -19,7 +19,10 @@ description = "validates startup"; serviceConfig = { Environment = config.sops.secrets."server-validation/webhook".path; - path = [ pkgs.zfs ]; + path = [ + "${pkgs.zfs}/bin/zfs" + "${pkgs.zfs}/bin/zpool" + ]; Type = "oneshot"; ExecStart = "${inputs.server_tools.packages.x86_64-linux.default}/bin/validate_jeeves"; };