Fix shell environment

My previous devshell didn't include rustc, which caused the LSP to
not work properly.
This commit is contained in:
Kiana Sheibani 2023-08-26 23:45:09 -04:00
parent e88066885e
commit 1e5bdd9e8c
Signed by: toki
GPG key ID: 6CB106C25E86A9F7

View file

@ -31,9 +31,7 @@
checks.default = self.packages.${system}.ggelo;
devShells.default = pkgs.mkShell {
inputsFrom = [ self.packages.${system}.ggelo ];
packages = [ pkgs.rust-analyzer ];
packages = with pkgs; [ rustc cargo pkg-config rust-analyzer ];
PKG_CONFIG_PATH = "${pkgs.openssl.dev}/lib/pkgconfig";
};
});