So, today, I tried to update NixOS by running
$ nix flakes update
$ sudo nixos-rebuild switch
in my configuration config. However, I think there was a major change in Nixpkgs (I follow nixpkgs-unstable
with a seperate Nix flake input). Now, whenever I try to rebuild NixOS, it prints this error message:
error: attribute 'vscode-langservers-extracted' missing
at /nix/store/wvs0lrqqy6fc4qjl4vj39fz3n70wcmb7-source/plugins/lsp/language-servers/default.nix:40:17:
39| description = "Enable cssls, for CSS";
40| package = pkgs.vscode-langservers-extracted;
| ^
41| cmd = cfg: ["${cfg.package}/bin/vscode-css-language-server" "--stdio"];
(use '--show-trace' to show detailed location information)
Do you have any idea on how to fix this?
Thanks!