feat: local install utility

This commit is contained in:
Swarsel 2024-12-18 13:58:49 +01:00
parent 6cba256e0b
commit c47ad454a0
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
5 changed files with 86 additions and 10 deletions

View file

@ -17,6 +17,7 @@ let
"github-notifications"
"screenshare"
"bootstrap"
"swarsel-install"
"t2ts"
"ts2t"
"vershell"

View file

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