From 39885acca72e2ba3dba2649dd84860a52ce95001 Mon Sep 17 00:00:00 2001 From: DavHau Date: Sat, 2 Sep 2023 21:31:15 +0200 Subject: [PATCH] deps: simplify example --- modules/dream2nix/core/deps/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/dream2nix/core/deps/default.nix b/modules/dream2nix/core/deps/default.nix index c27cdcd7..1e92b581 100644 --- a/modules/dream2nix/core/deps/default.nix +++ b/modules/dream2nix/core/deps/default.nix @@ -28,10 +28,9 @@ in { specialArgs = packageSets; }; example = lib.literalExpression '' - {nixpkgs, inputs', ...}: { + {nixpkgs, ...}: { inherit (nixpkgs) stdenv; inherit (nixpkgs.haskellPackages) pandoc; - nix = inputs'.nix.packages.default; } ''; default = {};