dev-flakes/flake.nix

32 lines
807 B
Nix
Raw Normal View History

2025-01-13 05:23:00 -06:00
{
2025-01-13 05:44:30 -06:00
inputs = { };
2025-01-13 05:23:00 -06:00
outputs =
2025-01-13 05:44:30 -06:00
{ self }:
2025-01-13 05:23:00 -06:00
{
2025-01-13 05:44:30 -06:00
templates = {
default = {
path = ./templates/default;
description = "A default template for a devenv-flake";
welcomeText = ''
# `.devenv` and `.direnv` should be added to `.gitignore`
```sh
echo .devenv >> .gitignore
echo .direnv >> .gitignore
```
'';
};
python = {
path = ./templates/python;
description = "A Python template for a devenv-flake";
welcomeText = ''
# `.devenv` and `.direnv` should be added to `.gitignore`
```sh
echo .devenv >> .gitignore
echo .direnv >> .gitignore
```
'';
};
};
2025-01-13 05:23:00 -06:00
};
}