flake: Switch to rust-analyzer over rls

This commit is contained in:
Sam W 2022-09-13 16:44:00 +01:00
parent 3df33fc522
commit 1a064b8042
2 changed files with 4 additions and 4 deletions

View File

@ -99,11 +99,11 @@
}, },
"nixpkgs_3": { "nixpkgs_3": {
"locked": { "locked": {
"lastModified": 1661353537, "lastModified": 1662907018,
"narHash": "sha256-1E2IGPajOsrkR49mM5h55OtYnU0dGyre6gl60NXKITE=", "narHash": "sha256-rMPfDmY7zJzv/tJj+LComcGEa1UuwI67kpbz5WC6abE=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "0e304ff0d9db453a4b230e9386418fd974d5804a", "rev": "17352e8995e1409636b0817a7f38d6314ccd73c4",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -46,7 +46,7 @@
}; };
in in
pkgs.devshell.mkShell { pkgs.devshell.mkShell {
packages = with pkgs; [(rust.override {extensions = ["rls"];})]; packages = with pkgs; [rust rust-analyzer];
}; };
formatter = pkgs.alejandra; formatter = pkgs.alejandra;
}); });