13 lines
254 B
Nix
13 lines
254 B
Nix
{ lib, config, pkgs, ... }:
|
|
let
|
|
scriptPath = ./assets/scripts/start_script.sh;
|
|
scriptExists = builtins.pathExists "${scriptPath}";
|
|
in
|
|
{
|
|
system.activationScripts.startScript = lib.mkIf scriptExists {
|
|
text = ''
|
|
${scriptPath}
|
|
'';
|
|
};
|
|
}
|