From e9b67d1b118a981acaad3e535af5374c5a209aac Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Wed, 4 Sep 2024 01:52:06 -0400 Subject: [PATCH] templates/unflake: add non-flake devshell --- templates/unflake/.envrc | 1 + templates/unflake/shell.nix | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 templates/unflake/.envrc create mode 100644 templates/unflake/shell.nix diff --git a/templates/unflake/.envrc b/templates/unflake/.envrc new file mode 100644 index 0000000..1d953f4 --- /dev/null +++ b/templates/unflake/.envrc @@ -0,0 +1 @@ +use nix diff --git a/templates/unflake/shell.nix b/templates/unflake/shell.nix new file mode 100644 index 0000000..8410b40 --- /dev/null +++ b/templates/unflake/shell.nix @@ -0,0 +1,8 @@ +let + pkgs = import { }; + devshell = import { }; +in + +devshell.mkShell { + packages = with pkgs; [ ]; +}