Files
nixos/henrovnix_ok/start_script.nix
T
2026-03-03 11:25:13 +01:00

14 lines
300 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}
'';
defer = false; # Run as early as possible
};
}