Files
Sovran_SystemsOS_Light/modules/Sovran_SystemsOS_Light_File_Fixes_And_New_Services.nix
T

24 lines
712 B
Nix
Raw Normal View History

2023-11-26 21:51:10 -08:00
{config, pkgs, lib, ...}:
{
systemd.services.Sovran_SystemsOS_Light_File_Fixes_And_New_Services = {
2024-08-09 15:58:35 -07:00
unitConfig = {
2024-09-06 19:26:39 -07:00
After = "network-online.target";
2024-08-09 15:58:35 -07:00
};
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";
};
2023-11-26 21:51:10 -08:00
2024-08-09 15:58:35 -07:00
wantedBy = [ "multi-user.target" ];
2023-11-26 21:51:10 -08:00
};
}