From 0a5b759c4851b6c45c1308bd0acfd34c4fca4bb4 Mon Sep 17 00:00:00 2001 From: Akira Komamura Date: Sat, 20 Jul 2024 11:19:27 +0900 Subject: [PATCH] chore: Add flake.nix for templates --- templates/flake.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 templates/flake.nix diff --git a/templates/flake.nix b/templates/flake.nix new file mode 100644 index 0000000..42ae13d --- /dev/null +++ b/templates/flake.nix @@ -0,0 +1,14 @@ +{ + outputs = {...}: { + templates = { + default = { + path = ./default; + description = "Default boilerplate that can be added to an existing Emacs Lisp project"; + welcomeText = '' + Please adjust flake.nix, justfile and .github/workflows/check-emacs-lisp.yml + to your project. + ''; + }; + }; + }; +} -- 2.51.2