We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a59e40d commit d5dd281Copy full SHA for d5dd281
1 file changed
flake.nix
@@ -131,6 +131,26 @@
131
) { } (builtins.attrNames reg)
132
);
133
134
+ # Flake templates for downstream consumers
135
+ templates = {
136
+ default = {
137
+ path = ./templates/devshell;
138
+ description = "Dev shell with toolbox packages";
139
+ };
140
+ devshell = {
141
142
143
144
+ go = {
145
+ path = ./templates/go;
146
+ description = "Go project with toolbox Go toolchain";
147
148
+ rust = {
149
+ path = ./templates/rust;
150
+ description = "Rust project with toolbox Rust toolchain";
151
152
153
+
154
# Development shell via devenv (activated by direnv)
155
devShells = forAllSystems (
156
system:
0 commit comments