refactor: fix shell.nix interface

This commit is contained in:
Kiana Sheibani 2025-11-26 16:53:43 -05:00
parent 1e7ccb7acf
commit 2225d6a02c
Signed by: toki
GPG key ID: 6CB106C25E86A9F7
8 changed files with 24 additions and 18 deletions

View file

@ -17,7 +17,7 @@
devShells = eachSystem (system:
let pkgs = nixpkgs.legacyPackages.${system};
in {
default = pkgs.callPackage ./shell.nix {};
default = import ./shell.nix { inherit pkgs; };
});
};
}