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:
parent
5bd3003c4a
commit
fd032b72cb
1 changed files with 4 additions and 4 deletions
|
|
@ -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";
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue