From 3f2d0cca1d90f3cf9859e19339260c61dd5e83ce Mon Sep 17 00:00:00 2001 From: reo101 Date: Thu, 23 Mar 2023 08:20:17 +0200 Subject: [PATCH] feat(templates): inherit `inputs` & `outputs` --- flake.nix | 2 +- templates/default.nix | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 378ebac..3880b98 100644 --- a/flake.nix +++ b/flake.nix @@ -100,7 +100,7 @@ ); # Templates - templates = import ./templates; + templates = import ./templates { inherit inputs outputs; }; # Overlays overlays = import ./overlays { inherit inputs outputs; }; diff --git a/templates/default.nix b/templates/default.nix index 4ee71bb..bb1c85c 100644 --- a/templates/default.nix +++ b/templates/default.nix @@ -1,3 +1,4 @@ +{ inputs, outputs, ... }: { haskell = { description = "Haskell environment (stack + hls)";