fix: the devshell was using the wrong packages
This commit is contained in:
parent
7c6bd3ee05
commit
ce239c1c88
1 changed files with 2 additions and 2 deletions
|
@ -20,7 +20,7 @@
|
|||
utils.lib.eachDefaultSystem (
|
||||
system: let
|
||||
pkgs = (import nixpkgs) {inherit system;};
|
||||
packages = with pkgs; [
|
||||
packages_local = with pkgs; [
|
||||
(pkgs.callPackage ./nix/packwiz.nix {})
|
||||
];
|
||||
in rec {
|
||||
|
@ -28,7 +28,7 @@
|
|||
# `nix develop`
|
||||
devShells.default = pkgs.mkShell {
|
||||
name = "Skynet Mod env";
|
||||
packages = packages;
|
||||
packages = packages_local;
|
||||
};
|
||||
|
||||
packages = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue