converted paths to strings

This commit is contained in:
Richie Cahill 2024-07-07 20:36:07 -04:00 committed by Alice Huston
parent 1d3729652c
commit 8b65d7046e

View File

@ -19,7 +19,10 @@
description = "validates startup"; description = "validates startup";
serviceConfig = { serviceConfig = {
Environment = config.sops.secrets."server-validation/webhook".path; Environment = config.sops.secrets."server-validation/webhook".path;
path = [ pkgs.zfs ]; path = [
"${pkgs.zfs}/bin/zfs"
"${pkgs.zfs}/bin/zpool"
];
Type = "oneshot"; Type = "oneshot";
ExecStart = "${inputs.server_tools.packages.x86_64-linux.default}/bin/validate_jeeves"; ExecStart = "${inputs.server_tools.packages.x86_64-linux.default}/bin/validate_jeeves";
}; };