Skip to content

Commit

Permalink
rm missing shell env workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
mightyiam committed Nov 20, 2024
1 parent 8f0e72d commit e46b008
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions nci.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{ inputs, lib, ... }:
{ inputs, ... }:
{
imports = [
inputs.nci.flakeModule
inputs.devshell.flakeModule
];

perSystem =
{ config, pkgs, ... }:
{ pkgs, ... }:
{
nci.projects.default = {
numtideDevshell = "default";
Expand All @@ -19,7 +19,6 @@
pkgs.rust-analyzer
pkgs.typescript
];
env = lib.concatMapAttrs (_: crate: crate.drvConfig.env) config.nci.crates |> lib.attrsToList;
};
};
}

0 comments on commit e46b008

Please sign in to comment.