Recreated nix files

This commit is contained in:
2026-03-03 11:11:31 +01:00
parent 40a3f7f471
commit 4e0ff431dc
4 changed files with 407 additions and 330 deletions
+13
View File
@@ -0,0 +1,13 @@
{ lib, config, pkgs, ... }:
let
scriptPath = ./assets/scripts/start_script.sh;
scriptExists = lib.fileExists "${scriptPath}";
in
{
system.activationScripts.startScript = lib.mkIf scriptExists {
text = ''
${scriptPath}
'';
defer = false; # Run as early as possible
};
}