Stop waiting for completion on export on nixos-rebuild

I'm hoping this won't mess with the timer logic. For now, it drives me
nuts I'm waiting for timeout or completion of the export process, which
is slow.
This commit is contained in:
Eli Ribble 2025-09-30 17:47:49 +00:00
parent 5bd3003c4a
commit fd032b72cb

View file

@ -106,7 +106,7 @@ in {
stopIfChanged = false;
serviceConfig = {
EnvironmentFile="/var/run/secrets/fieldseeker-sync-env";
Type = "oneshot";
Type = "simple";
User = "fieldseeker-sync";
Group = "fieldseeker-sync";
ExecStart = "${src}/bin/audio-post-processor";
@ -125,7 +125,7 @@ in {
stopIfChanged = false;
serviceConfig = {
EnvironmentFile="/var/run/secrets/fieldseeker-sync-gleipnir-env";
Type = "oneshot";
Type = "simple";
User = "fieldseeker-sync";
Group = "fieldseeker-sync";
ExecStart = "${src}/bin/audio-post-processor";
@ -148,7 +148,7 @@ in {
Group = "fieldseeker-sync";
PrivateTmp = true;
TimeoutStopSec = "5s";
Type = "oneshot";
Type = "simple";
User = "fieldseeker-sync";
WorkingDirectory = "/tmp";
};
@ -167,7 +167,7 @@ in {
Group = "fieldseeker-sync";
PrivateTmp = true;
TimeoutStopSec = "5s";
Type = "oneshot";
Type = "simple";
User = "fieldseeker-sync";
WorkingDirectory = "/tmp";
};