[fix] nixvim: rollback to nixpkgs-stable
All checks were successful
/ check (push) Successful in 28s
/ build (docs) (push) Successful in 2s
/ build (nixosConfigurations.vm.config.system.build.toplevel) (push) Successful in 23s
/ build (nvim) (push) Successful in 14s

See [nixvim/#1699][1] for context.

[1]: <https://github.com/nix-community/nixvim/issues/1699>
This commit is contained in:
Jalil David Salamé Messina 2024-06-14 23:46:38 +02:00
parent f30f93283e
commit 63f529704d
Signed by: jalil
GPG key ID: F016B9E770737A0B
3 changed files with 6 additions and 4 deletions

View file

@ -453,7 +453,7 @@
],
"nix-darwin": [],
"nixpkgs": [
"unstable"
"nixpkgs"
],
"treefmt-nix": "treefmt-nix"
},

View file

@ -45,7 +45,9 @@
nixvim = {
url = "github:nix-community/nixvim";
inputs = {
nixpkgs.follows = "unstable";
# Disable until fixed upstream: https://github.com/nix-community/nixvim/issues/1699
# nixpkgs.follows = "unstable";
nixpkgs.follows = "nixpkgs";
devshell.follows = "devshell";
nix-darwin.follows = ""; # disable MacOS stuff
home-manager.follows = "home-manager";

View file

@ -134,13 +134,13 @@
enable = true;
servers = {
bashls.enable = true;
# clangd.enable = true;
# clangd.enable = true; # Adds ~2GiB
html.enable = true;
jsonls.enable = true;
nil-ls.enable = true;
ruff-lsp.enable = true;
taplo.enable = true;
texlab.enable = true;
# texlab.enable = true; # Not writing TeX rn
typos-lsp.enable = true;
typst-lsp.enable = true;
};