nix-templates/flake.nix

17 lines
306 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";
};
};
};
}