Files
clan-core/pkgs/generate-test-vars/test/vars.nix
2025-04-21 15:18:14 +02:00

22 lines
378 B
Nix

# Test that we can generate vars
{
vars.generators = {
test_generator_1 = {
files.hello = {
secret = false;
};
script = ''
echo "hello world 1" > $out/hello
'';
};
test_generator_2 = {
files.hello = {
secret = false;
};
script = ''
echo "hello world 2" > $out/hello
'';
};
};
}