feat: catchup local installer to remote

This commit is contained in:
Leon Schwarzäugl 2024-12-28 14:11:03 +01:00
parent 665abecc5b
commit cb47c8e13e
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
7 changed files with 347 additions and 64 deletions

View file

@ -19,6 +19,7 @@ let
"bootstrap"
"swarsel-rebuild"
"swarsel-install"
"swarsel-postinstall"
"t2ts"
"ts2t"
"vershell"

View file

@ -0,0 +1,7 @@
{ writeShellApplication, git }:
writeShellApplication {
name = "swarsel-postinstall";
runtimeInputs = [ git ];
text = builtins.readFile ../../scripts/swarsel-postinstall.sh;
}