Files
flake-templates/flake.nix
2025-12-07 16:52:20 +08:00

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;
};
}