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. + ''; + }; + }; + }; +}