fix: the devshell was using the wrong packages

This commit is contained in:
silver 2025-05-07 21:21:46 +01:00
parent 7c6bd3ee05
commit ce239c1c88
Signed by: silver
GPG key ID: 36F93D61BAD3FD7D

View file

@ -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 = {