this repo has no description
at main 1.1 kB view raw
1{ 2 inputs = { }; 3 4 outputs = _: { 5 templates = { 6 agda = { 7 path = ./agda; 8 description = "An Agda template"; 9 }; 10 11 c = { 12 path = ./c; 13 description = "A C/C++ template"; 14 }; 15 16 cpp = { 17 path = ./c; 18 description = "A C/C++ template"; 19 }; 20 21 flake-utils = { 22 path = ./flake-utils; 23 description = "A flake-utils template"; 24 }; 25 26 go = { 27 path = ./go; 28 description = "A Golang template"; 29 }; 30 31 latex = { 32 path = ./latex; 33 description = "A LaTeX template"; 34 }; 35 36 nixpkgs-extened-lib = { 37 path = ./nixpkgs-extended-lib; 38 description = "A Nixpkgs extended library template"; 39 }; 40 41 node = { 42 path = ./node; 43 description = "A NodeJS template"; 44 }; 45 46 python = { 47 path = ./python; 48 description = "A Python template"; 49 }; 50 51 rough-base = { 52 path = ./rough-base; 53 description = "A Rough template"; 54 }; 55 56 rust = { 57 path = ./rust; 58 description = "A Rust template"; 59 }; 60 }; 61 }; 62}