From 6a08cd5d2157ae0fede8cb70c302bbf018803933 Mon Sep 17 00:00:00 2001 From: Reed Krantz Date: Mon, 12 Jan 2026 15:43:45 -0600 Subject: [PATCH] feat: added a parent flake.nix to serve templates. --- flake.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 flake.nix diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..bd5a061 --- /dev/null +++ b/flake.nix @@ -0,0 +1,12 @@ +{ + description = "A collection of templates for various programming languages"; + + outputs = {self}: { + templates = { + rust = { + path = ./rust; + description = "A rust flake with crane and templates for command args and configs"; + }; + }; + }; +}