12 lines
277 B
Nix
12 lines
277 B
Nix
|
{ description = "My collection of flake templates";
|
||
|
outputs = { self }: {
|
||
|
templates = {
|
||
|
trivial = {
|
||
|
path = ./trivial;
|
||
|
description = "What I consider to be the bare minimum flake";
|
||
|
};
|
||
|
};
|
||
|
defaultTemplate = self.templates.trivial;
|
||
|
};
|
||
|
}
|