feat: provide installation from local ISO

This commit is contained in:
Swarsel 2024-12-19 17:40:25 +01:00
parent 57135bd505
commit 9e8324ad27
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
6 changed files with 313 additions and 42 deletions

View file

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