From 63f529704d10c256fa0a59dcef18a934392acf9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jalil=20David=20Salam=C3=A9=20Messina?= Date: Fri, 14 Jun 2024 23:46:38 +0200 Subject: [PATCH] [fix] nixvim: rollback to nixpkgs-stable See [nixvim/#1699][1] for context. [1]: --- flake.lock | 2 +- flake.nix | 4 +++- nvim/plugins.nix | 4 ++-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/flake.lock b/flake.lock index 01f0ba9..124c48f 100644 --- a/flake.lock +++ b/flake.lock @@ -453,7 +453,7 @@ ], "nix-darwin": [], "nixpkgs": [ - "unstable" + "nixpkgs" ], "treefmt-nix": "treefmt-nix" }, diff --git a/flake.nix b/flake.nix index d4fbb21..96a26cc 100644 --- a/flake.nix +++ b/flake.nix @@ -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"; diff --git a/nvim/plugins.nix b/nvim/plugins.nix index 1732580..056af9a 100644 --- a/nvim/plugins.nix +++ b/nvim/plugins.nix @@ -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; };