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";
|
|
|
|
};
|
|
|
|
|
2023-12-14 13:37:32 +00:00
|
|
|
llvm = {
|
|
|
|
path = ./llvm;
|
|
|
|
description = "LLVM-build flake";
|
|
|
|
};
|
|
|
|
|
2023-06-30 18:07:02 +00:00
|
|
|
python = {
|
|
|
|
path = ./python;
|
|
|
|
description = "Python flake";
|
|
|
|
};
|
|
|
|
|
|
|
|
rust = {
|
|
|
|
path = ./rust;
|
|
|
|
description = "Rust flake";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
defaultTemplate = self.templates.defualt;
|
|
|
|
};
|
|
|
|
}
|