From 66b818dcf737258a9603b53b041df65324efe353 Mon Sep 17 00:00:00 2001 From: Tim Van Baak Date: Sun, 4 Jun 2023 18:16:34 -0700 Subject: [PATCH] Add a flake template --- flake.nix | 5 +++++ template/intake.json | 10 ++++++++++ 2 files changed, 15 insertions(+) create mode 100644 template/intake.json diff --git a/flake.nix b/flake.nix index f390ac7..4f8e2af 100644 --- a/flake.nix +++ b/flake.nix @@ -33,5 +33,10 @@ ''; }; }; + + templates.source = { + path = builtins.path { path = ./template; name = "source"; }; + description = "A basic intake source config"; + }; }; } diff --git a/template/intake.json b/template/intake.json new file mode 100644 index 0000000..d5a4c7f --- /dev/null +++ b/template/intake.json @@ -0,0 +1,10 @@ +{ + "action": { + "fetch": { + "exe": "", + "args": [] + } + }, + "env": { + } +}