feat(templates): inherit inputs & outputs

This commit is contained in:
reo101 2023-03-23 08:20:17 +02:00
parent cf6af515e0
commit 3f2d0cca1d
Signed by: reo101
GPG key ID: 675AA7EF13964ACB
2 changed files with 2 additions and 1 deletions

View file

@ -100,7 +100,7 @@
);
# Templates
templates = import ./templates;
templates = import ./templates { inherit inputs outputs; };
# Overlays
overlays = import ./overlays { inherit inputs outputs; };

View file

@ -1,3 +1,4 @@
{ inputs, outputs, ... }:
{
haskell = {
description = "Haskell environment (stack + hls)";