added not tested isntall script and some secrets
This commit is contained in:
parent
728edd0036
commit
8f83105aa4
5 changed files with 231 additions and 18 deletions
18
apps/install/default.nix
Normal file
18
apps/install/default.nix
Normal 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
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue