Proof of concept work in progress darwin deployment script

This commit is contained in:
Andrea Ciceri 2024-11-15 10:02:04 +01:00
parent f13e48aaaf
commit 00f6fd9f6e
Signed by: aciceri
SSH key fingerprint: SHA256:/AagBweyV4Hlfg9u092n8hbHwD5fcB6A3qhDiDA65Rg
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,9 @@
{
writeShellApplication,
...
}:
writeShellApplication {
name = "deploy-darwin";
text = builtins.readFile ./deploy-darwin.sh;
runtimeInputs = [ ];
}