From 04bf6f203830d9140eee7b8e22a9b2665eaef7dd Mon Sep 17 00:00:00 2001 From: Richie Cahill Date: Fri, 17 Oct 2025 12:46:44 -0400 Subject: [PATCH] updated commands with typer --- common/global/snapshot_manager.nix | 2 +- systems/jeeves/services/systemd.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common/global/snapshot_manager.nix b/common/global/snapshot_manager.nix index fb2d44a..7f0f71f 100644 --- a/common/global/snapshot_manager.nix +++ b/common/global/snapshot_manager.nix @@ -39,7 +39,7 @@ in Type = "oneshot"; ExecStart = "${ inputs.system_tools.packages.${pkgs.system}.default - }/bin/snapshot_manager --config-file=${lib.escapeShellArg cfg.path}"; + }/bin/snapshot_manager ${lib.escapeShellArg cfg.path}"; } // lib.optionalAttrs (cfg.EnvironmentFile != null) { EnvironmentFile = cfg.EnvironmentFile; diff --git a/systems/jeeves/services/systemd.nix b/systems/jeeves/services/systemd.nix index 0107cc7..1d4c704 100644 --- a/systems/jeeves/services/systemd.nix +++ b/systems/jeeves/services/systemd.nix @@ -25,7 +25,7 @@ in serviceConfig = { EnvironmentFile = "${vars.secrets}/services/server-validation"; Type = "oneshot"; - ExecStart = "${inputs.system_tools.packages.x86_64-linux.default}/bin/validate_system --config-file='${./validate_system.toml}'"; + ExecStart = "${inputs.system_tools.packages.x86_64-linux.default}/bin/validate_system '${./validate_system.toml}'"; }; }; };