From e46b008242688a9097cc00c4517ded1095a5f95a Mon Sep 17 00:00:00 2001 From: "Shahar \"Dawn\" Or" Date: Wed, 20 Nov 2024 20:38:57 +0700 Subject: [PATCH] rm missing shell env workaround --- nci.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/nci.nix b/nci.nix index 9c818721..1780a678 100644 --- a/nci.nix +++ b/nci.nix @@ -1,4 +1,4 @@ -{ inputs, lib, ... }: +{ inputs, ... }: { imports = [ inputs.nci.flakeModule @@ -6,7 +6,7 @@ ]; perSystem = - { config, pkgs, ... }: + { pkgs, ... }: { nci.projects.default = { numtideDevshell = "default"; @@ -19,7 +19,6 @@ pkgs.rust-analyzer pkgs.typescript ]; - env = lib.concatMapAttrs (_: crate: crate.drvConfig.env) config.nci.crates |> lib.attrsToList; }; }; }