nixos-configs/homeModules/templates.nix

13 lines
252 B
Nix
Raw Normal View History

2025-09-14 13:36:45 +02:00
{
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
'';
};
}