13 lines
214 B
Nix
13 lines
214 B
Nix
|
{
|
||
|
description = "A collection of flake templates";
|
||
|
|
||
|
outputs = {self}: {
|
||
|
templates = {
|
||
|
default = {
|
||
|
path = ./default;
|
||
|
description = "My own basic flake template";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|