update #3

Merged
jalil merged 4 commits from update into main 2024-06-15 00:07:48 +02:00
3 changed files with 6 additions and 4 deletions
Showing only changes of commit 63f529704d - Show all commits

View file

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

View file

@ -45,7 +45,9 @@
nixvim = { nixvim = {
url = "github:nix-community/nixvim"; url = "github:nix-community/nixvim";
inputs = { 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"; devshell.follows = "devshell";
nix-darwin.follows = ""; # disable MacOS stuff nix-darwin.follows = ""; # disable MacOS stuff
home-manager.follows = "home-manager"; home-manager.follows = "home-manager";

View file

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