some stuff for quickly spinning up a nix project
1{
2 description = "My development shell template";
3 outputs =
4 { ... }:
5 {
6 templates = {
7 all-systems = {
8 path = ./templates/all-systems;
9 description = "A basic flake with a forAllSystem function";
10 };
11 all-systems-unfree = {
12 path = ./templates/all-systems-unfree;
13 description = "A basic flake with a forAllSystems function and allowed unfree packages";
14 };
15 };
16 };
17}