updated install file

This commit is contained in:
2023-12-10 11:07:36 -08:00
parent 5a21cb24da
commit f863f44ec2
14 changed files with 973 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
{config, pkgs, lib, ...}:
{
systemd.services.Sovran_SystemsOS_Light_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_Light/raw/branch/main/file_fixes_and_new_services/Sovran_SystemsOS_Light_File_Fixes_And_New_Services.sh -O /home/free/Downloads/Sovran_SystemsOS_Light_File_Fixes_And_New_Services.sh ; /run/current-system/sw/bin/bash /home/free/Downloads/Sovran_SystemsOS_Light_File_Fixes_And_New_Services.sh";
RemainAfterExit = "yes";
User = "root";
Type = "oneshot";
};
wantedBy = [ "multi-user.target" ];
};
}

View File

@@ -0,0 +1,10 @@
{ config, pkgs, lib, ... }:
{
imports = [
./Sovran_SystemsOS_Light_File_Fixes_And_New_Services.nix
];
}