added not tested isntall script and some secrets

This commit is contained in:
steffen 2026-03-14 11:33:59 +01:00
parent 728edd0036
commit 8f83105aa4
5 changed files with 231 additions and 18 deletions

18
apps/install/default.nix Normal file
View file

@ -0,0 +1,18 @@
{
writeShellApplication,
git,
...
}:
let
name = "install";
text = builtins.readFile ./${name}.sh;
in
writeShellApplication {
inherit name text;
meta.mainProgram = name;
runtimeInputs = [
git
];
}