From f3ef69a038a31d4363140702ab159dac071ceec7 Mon Sep 17 00:00:00 2001 From: Danilo Reyes Date: Fri, 6 Feb 2026 09:10:40 -0600 Subject: [PATCH] Add restartIfChanged option to lidarr-mb-gap service configuration - Introduced the `restartIfChanged` option set to false in the lidarr-mb-gap NixOS module to control service restart behavior. - This change enhances service management by preventing unnecessary restarts when configuration changes occur without affecting the service's operational state. --- nixos/lidarr-mb-gap.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/lidarr-mb-gap.nix b/nixos/lidarr-mb-gap.nix index aa7815e..2a38d96 100644 --- a/nixos/lidarr-mb-gap.nix +++ b/nixos/lidarr-mb-gap.nix @@ -134,6 +134,7 @@ in description = "Generate Lidarr MusicBrainz Gap Report"; after = [ "network.target" ]; wantedBy = [ "multi-user.target" ]; + restartIfChanged = false; serviceConfig = { Type = "oneshot";