mirror of
https://git.adityakumar.xyz/flakes.git
synced 2024-11-09 14:19:43 +00:00
48 lines
1 KiB
Nix
48 lines
1 KiB
Nix
{
|
|
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";
|
|
};
|
|
|
|
llvm = {
|
|
path = ./llvm;
|
|
description = "LLVM-build flake";
|
|
};
|
|
|
|
python = {
|
|
path = ./python;
|
|
description = "Python flake";
|
|
};
|
|
|
|
rust = {
|
|
path = ./rust;
|
|
description = "Rust flake";
|
|
};
|
|
};
|
|
|
|
defaultTemplate = self.templates.defualt;
|
|
};
|
|
}
|