script template

This commit is contained in:
Vinzenz Schroeter 2023-12-25 12:06:58 +01:00
parent 04a3c309fe
commit a7fedb9e8a

View file

@ -43,6 +43,15 @@
}
# Templates
{
home.file."Templates/Empty file".text = "";
home.file = {
"Templates/Empty file".text = "";
"Templates/Empty bash script".text = ''
#!/usr/bin/env bash
# abort on error, undefined variables
set -eu
# print commands before execution
set -x
'';
};
}
]