fix flake

This commit is contained in:
cswimr 2025-01-13 05:46:29 -06:00
parent 4736a3551c
commit 128ed87f01
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087
4 changed files with 4 additions and 3 deletions

View file

@ -4,9 +4,9 @@
{ self }:
{
templates = {
default = {
path = ./templates/default;
description = "A default template for a devenv-flake";
simple = {
path = ./templates/simple;
description = "A simple template for a devenv-flake";
welcomeText = ''
# `.devenv` and `.direnv` should be added to `.gitignore`
```sh
@ -26,6 +26,7 @@
```
'';
};
default = self.templates.simple;
};
};
}