feat(cheetah): add zls

This commit is contained in:
reo101 2022-11-21 15:36:23 +02:00
parent ef283b9c1f
commit 9032738351
2 changed files with 8 additions and 0 deletions

View file

@ -39,6 +39,11 @@
url = "github:mitchellh/zig-overlay"; url = "github:mitchellh/zig-overlay";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
zls-overlay = {
url = "github:zigtools/zls";
inputs.nixpkgs.follows = "nixpkgs";
};
}; };
outputs = { self outputs = { self
@ -49,6 +54,7 @@
# , nix-colors # , nix-colors
, neovim-nightly-overlay , neovim-nightly-overlay
, zig-overlay , zig-overlay
, zls-overlay
, ... , ...
} @ inputs: } @ inputs:
let let

View file

@ -52,12 +52,14 @@
# Zig # Zig
zigpkgs.master zigpkgs.master
inputs.zls-overlay.packages.aarch64-linux.default
]; ];
nixpkgs = { nixpkgs = {
overlays = [ overlays = [
inputs.neovim-nightly-overlay.overlay inputs.neovim-nightly-overlay.overlay
inputs.zig-overlay.overlays.default inputs.zig-overlay.overlays.default
# inputs.zls-overlay.???
]; ];
config.allowUnfree = true; config.allowUnfree = true;