nixos-configuration/homeModules/templates.nix
Vinzenz Schroeter 1b3b7cf607 more homeModules
2025-09-14 13:36:45 +02:00

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
'';
};
}