From d8cd684b62053cb373c1ada9d41434fe737e6177 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Fri, 3 Jun 2022 18:27:28 +0200 Subject: [PATCH] nixos/asf: restart when self restarting --- nixos/modules/services/games/asf.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/games/asf.nix b/nixos/modules/services/games/asf.nix index 3d876ec712fc..4eb24b704c7f 100644 --- a/nixos/modules/services/games/asf.nix +++ b/nixos/modules/services/games/asf.nix @@ -183,6 +183,7 @@ in WorkingDirectory = cfg.dataDir; Type = "simple"; ExecStart = "${cfg.package}/bin/ArchiSteamFarm --path ${cfg.dataDir} --process-required --no-restart --service --no-config-migrate"; + Restart = "always"; # mostly copied from the default systemd service PrivateTmp = true;