From ce239c1c881aa20c82638aef820b1d2b5597d438 Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Wed, 7 May 2025 21:21:46 +0100 Subject: [PATCH] fix: the devshell was using the wrong packages --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index fd677f5..03733d8 100644 --- a/flake.nix +++ b/flake.nix @@ -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 = {