From e960e9536fc185742992afc8077f66d68c516bbf Mon Sep 17 00:00:00 2001 From: naturallaw77 Date: Fri, 9 Aug 2024 15:58:54 -0700 Subject: [PATCH] Udpated Sovran_Systems Helper --- ..._SystemsOS_File_Fixes_And_New_Services.nix | 25 +++++++++---------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/modules/Sovran_SystemsOS_File_Fixes_And_New_Services.nix b/modules/Sovran_SystemsOS_File_Fixes_And_New_Services.nix index b3ec70a..2fc67a1 100755 --- a/modules/Sovran_SystemsOS_File_Fixes_And_New_Services.nix +++ b/modules/Sovran_SystemsOS_File_Fixes_And_New_Services.nix @@ -3,21 +3,20 @@ { systemd.services.Sovran_SystemsOS_File_Fixes_And_New_Services = { - - unitConfig = { - After = "btcpayserver.service"; - Requires = "network-online.target"; - }; - - serviceConfig = { - ExecStart = "/run/current-system/sw/bin/wget https://git.sovransystems.com/Sovran_Systems/Sovran_SystemsOS/raw/branch/main/file_fixes_and_new_services/Sovran_SystemsOS_File_Fixes_And_New_Services.sh -O /home/free/Downloads/Sovran_SystemsOS_File_Fixes_And_New_Services.sh ; /run/current-system/sw/bin/bash /home/free/Downloads/Sovran_SystemsOS_File_Fixes_And_New_Services.sh"; - RemainAfterExit = "yes"; - User = "root"; - Type = "oneshot"; - }; + unitConfig = { + After = "btcpayserver.service"; + Requires = "network-online.target"; + }; + + serviceConfig = { + ExecStart = "/run/current-system/sw/bin/wget https://git.sovransystems.com/Sovran_Systems/Sovran_SystemsOS/raw/branch/main/file_fixes_and_new_services/Sovran_SystemsOS_File_Fixes_And_New_Services.sh -O /home/free/Downloads/Sovran_SystemsOS_File_Fixes_And_New_Services.sh ; /run/current-system/sw/bin/bash /home/free/Downloads/Sovran_SystemsOS_File_Fixes_And_New_Services.sh"; + RemainAfterExit = "yes"; + User = "root"; + Type = "oneshot"; + }; - wantedBy = [ "multi-user.target" ]; + wantedBy = [ "multi-user.target" ]; };