flakes/flake.nix

44 lines
918 B
Nix
Raw Normal View History

2023-06-30 18:07:02 +00:00
{
description = "A collection of nix flakes";
outputs = { self }: {
templates = {
default = {
path = ./default;
description = "Default flake";
};
c = {
path = ./c;
description = "C flake";
};
cpp = {
path = ./cpp;
description = "C++ flake";
};
hugo = {
path = ./hugo;
description = "Hugo flake";
};
latex = {
path = ./latex;
description = "LaTeX flake";
};
python = {
path = ./python;
description = "Python flake";
};
rust = {
path = ./rust;
description = "Rust flake";
};
};
defaultTemplate = self.templates.defualt;
};
}