From b79fe290c99475eddf0a43b1bdd04222d131df31 Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Mon, 14 Oct 2024 17:12:36 +0200 Subject: [PATCH] Lib: Add library template --- lib/0_template/libTEMPLATE.nix | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 lib/0_template/libTEMPLATE.nix diff --git a/lib/0_template/libTEMPLATE.nix b/lib/0_template/libTEMPLATE.nix new file mode 100644 index 00000000..310f8171 --- /dev/null +++ b/lib/0_template/libTEMPLATE.nix @@ -0,0 +1,8 @@ +{ + inputs, + pkgs, + lib, + ... +}: rec { + templateLibFunction = args: "${args}"; +}