12 lines
252 B
Nix
12 lines
252 B
Nix
{
|
|
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
|
|
'';
|
|
};
|
|
}
|