tijdelijk-te-laat/flake.nix

12 lines
277 B
Nix
Raw Normal View History

2023-10-22 18:11:56 +02:00
{ 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;
};
}