21 lines
426 B
Nix
21 lines
426 B
Nix
{
|
|
description = "A collection of flake templates";
|
|
|
|
outputs = {self}: {
|
|
templates = {
|
|
default = {
|
|
path = ./default;
|
|
description = "My own basic flake template";
|
|
};
|
|
pwn = {
|
|
path = ./pwn;
|
|
description = "My pwn flake template";
|
|
};
|
|
pwn-ld = {
|
|
path = ./pwn-ld;
|
|
description = "template for loading libc in current folder";
|
|
};
|
|
};
|
|
};
|
|
}
|