nix-templates/flake.nix

21 lines
426 B
Nix
Raw Normal View History

2023-03-20 09:07:05 +01:00
{
description = "A collection of flake templates";
outputs = {self}: {
templates = {
default = {
path = ./default;
description = "My own basic flake template";
};
2023-10-08 13:42:53 +02:00
pwn = {
path = ./pwn;
description = "My pwn flake template";
};
2023-10-08 15:17:31 +02:00
pwn-ld = {
path = ./pwn-ld;
description = "template for loading libc in current folder";
};
2023-03-20 09:07:05 +01:00
};
};
}