From b8ba3056da39e2763094b7c695da0c9d5ee287c5 Mon Sep 17 00:00:00 2001 From: Seth Flynn Date: Sun, 2 Feb 2025 14:42:48 -0500 Subject: templates/standard: expand --- templates/standard/shell.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 templates/standard/shell.nix (limited to 'templates/standard/shell.nix') diff --git a/templates/standard/shell.nix b/templates/standard/shell.nix new file mode 100644 index 0000000..ded42bb --- /dev/null +++ b/templates/standard/shell.nix @@ -0,0 +1,16 @@ +{ + pkgs ? import nixpkgs { + inherit system; + config = { }; + overlays = [ ]; + }, + nixpkgs ? , + system ? builtins.currentSystem, + hello ? (import ./default.nix { inherit pkgs; }).hello, +}: + +pkgs.mkShell { + packages = [ pkgs.bash ]; + + inputsFrom = [ hello ]; +} -- cgit v1.2.3