18 lines
364 B
Nix
18 lines
364 B
Nix
{
|
|
description = "imxyy_soope's flake templates";
|
|
|
|
outputs = { self }: {
|
|
templates = {
|
|
shell = {
|
|
description = "Basic nix shell";
|
|
path = ./shell;
|
|
};
|
|
sub-shell = {
|
|
description = "Basic nix shell in a `nix` subdirectory";
|
|
path = ./sub-shell;
|
|
};
|
|
};
|
|
defaultTemplate = self.templates.shell;
|
|
};
|
|
}
|